CfnRouteMixinProps

class aws_cdk.mixins_preview.aws_refactorspaces.mixins.CfnRouteMixinProps(*, application_identifier=None, default_route=None, environment_identifier=None, route_type=None, service_identifier=None, tags=None, uri_path_route=None)

Bases: object

Properties for CfnRoutePropsMixin.

Parameters:
  • application_identifier (Optional[str]) – The unique identifier of the application.

  • default_route (Union[IResolvable, DefaultRouteInputProperty, Dict[str, Any], None]) – Configuration for the default route type.

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

  • route_type (Optional[str]) – The route type of the route.

  • service_identifier (Optional[str]) – The unique identifier of the service.

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

  • uri_path_route (Union[IResolvable, UriPathRouteInputProperty, Dict[str, Any], None]) – The configuration for the URI path route type.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-route.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_route_mixin_props = refactorspaces_mixins.CfnRouteMixinProps(
    application_identifier="applicationIdentifier",
    default_route=refactorspaces_mixins.CfnRoutePropsMixin.DefaultRouteInputProperty(
        activation_state="activationState"
    ),
    environment_identifier="environmentIdentifier",
    route_type="routeType",
    service_identifier="serviceIdentifier",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    uri_path_route=refactorspaces_mixins.CfnRoutePropsMixin.UriPathRouteInputProperty(
        activation_state="activationState",
        append_source_path=False,
        include_child_paths=False,
        methods=["methods"],
        source_path="sourcePath"
    )
)

Attributes

application_identifier

The unique identifier of the application.

See:

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

default_route

Configuration for the default route type.

See:

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

environment_identifier

The unique identifier of the environment.

See:

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

route_type

The route type of the route.

See:

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

service_identifier

The unique identifier of the service.

See:

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

tags

The tags assigned to the route.

See:

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

uri_path_route

The configuration for the URI path route type.

See:

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