GatewayRouteReference
- class aws_cdk.aws_appmesh.GatewayRouteReference(*, gateway_route_arn, gateway_route_id)
Bases:
object
A reference to a GatewayRoute resource.
- Parameters:
gateway_route_arn (
str
) – The ARN of the GatewayRoute resource.gateway_route_id (
str
) – The Id of the GatewayRoute 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_appmesh as appmesh gateway_route_reference = appmesh.GatewayRouteReference( gateway_route_arn="gatewayRouteArn", gateway_route_id="gatewayRouteId" )
Attributes
- gateway_route_arn
The ARN of the GatewayRoute resource.
- gateway_route_id
The Id of the GatewayRoute resource.