CfnApplicationMixinProps

class aws_cdk.mixins_preview.aws_refactorspaces.mixins.CfnApplicationMixinProps(*, api_gateway_proxy=None, environment_identifier=None, name=None, proxy_type=None, tags=None, vpc_id=None)

Bases: object

Properties for CfnApplicationPropsMixin.

Parameters:
  • api_gateway_proxy (Union[IResolvable, ApiGatewayProxyInputProperty, Dict[str, Any], None]) – The endpoint URL of the Amazon API Gateway proxy.

  • environment_identifier (Optional[str]) – The unique identifier of the environment.

  • name (Optional[str]) – The name of the application.

  • proxy_type (Optional[str]) – The proxy type of the proxy created within the application.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags assigned to the application.

  • vpc_id (Optional[str]) – The ID of the virtual private cloud (VPC).

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-application.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_refactorspaces import mixins as refactorspaces_mixins

cfn_application_mixin_props = refactorspaces_mixins.CfnApplicationMixinProps(
    api_gateway_proxy=refactorspaces_mixins.CfnApplicationPropsMixin.ApiGatewayProxyInputProperty(
        endpoint_type="endpointType",
        stage_name="stageName"
    ),
    environment_identifier="environmentIdentifier",
    name="name",
    proxy_type="proxyType",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    vpc_id="vpcId"
)

Attributes

api_gateway_proxy

The endpoint URL of the Amazon API Gateway proxy.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-application.html#cfn-refactorspaces-application-apigatewayproxy

environment_identifier

The unique identifier of the environment.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-application.html#cfn-refactorspaces-application-environmentidentifier

name

The name of the application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-application.html#cfn-refactorspaces-application-name

proxy_type

The proxy type of the proxy created within the application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-application.html#cfn-refactorspaces-application-proxytype

tags

The tags assigned to the application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-application.html#cfn-refactorspaces-application-tags

vpc_id

The ID of the virtual private cloud (VPC).

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-application.html#cfn-refactorspaces-application-vpcid