RouteReference
- class aws_cdk.aws_refactorspaces.RouteReference(*, application_identifier, environment_identifier, route_arn, route_identifier)
Bases:
object
A reference to a Route resource.
- Parameters:
application_identifier (
str
) – The ApplicationIdentifier of the Route resource.environment_identifier (
str
) – The EnvironmentIdentifier of the Route resource.route_arn (
str
) – The ARN of the Route resource.route_identifier (
str
) – The RouteIdentifier of the Route resource.
- 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 import aws_refactorspaces as refactorspaces route_reference = refactorspaces.RouteReference( application_identifier="applicationIdentifier", environment_identifier="environmentIdentifier", route_arn="routeArn", route_identifier="routeIdentifier" )
Attributes
- application_identifier
The ApplicationIdentifier of the Route resource.
- environment_identifier
The EnvironmentIdentifier of the Route resource.
- route_arn
The ARN of the Route resource.
- route_identifier
The RouteIdentifier of the Route resource.