CfnGatewayRouteProps
- class aws_cdk.aws_appmesh.CfnGatewayRouteProps(*, mesh_name, spec, virtual_gateway_name, gateway_route_name=None, mesh_owner=None, tags=None)
Bases:
object
Properties for defining a
CfnGatewayRoute
.- Parameters:
mesh_name (
str
) – The name of the service mesh that the resource resides in.spec (
Union
[IResolvable
,GatewayRouteSpecProperty
,Dict
[str
,Any
]]) – The specifications of the gateway route.virtual_gateway_name (
str
) – The virtual gateway that the gateway route is associated with.gateway_route_name (
Optional
[str
]) – The name of the gateway route.mesh_owner (
Optional
[str
]) – The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it’s the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes .tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – Optional metadata that you can apply to the gateway route to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-gatewayroute.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 import aws_appmesh as appmesh cfn_gateway_route_props = appmesh.CfnGatewayRouteProps( mesh_name="meshName", spec=appmesh.CfnGatewayRoute.GatewayRouteSpecProperty( grpc_route=appmesh.CfnGatewayRoute.GrpcGatewayRouteProperty( action=appmesh.CfnGatewayRoute.GrpcGatewayRouteActionProperty( target=appmesh.CfnGatewayRoute.GatewayRouteTargetProperty( virtual_service=appmesh.CfnGatewayRoute.GatewayRouteVirtualServiceProperty( virtual_service_name="virtualServiceName" ), # the properties below are optional port=123 ), # the properties below are optional rewrite=appmesh.CfnGatewayRoute.GrpcGatewayRouteRewriteProperty( hostname=appmesh.CfnGatewayRoute.GatewayRouteHostnameRewriteProperty( default_target_hostname="defaultTargetHostname" ) ) ), match=appmesh.CfnGatewayRoute.GrpcGatewayRouteMatchProperty( hostname=appmesh.CfnGatewayRoute.GatewayRouteHostnameMatchProperty( exact="exact", suffix="suffix" ), metadata=[appmesh.CfnGatewayRoute.GrpcGatewayRouteMetadataProperty( name="name", # the properties below are optional invert=False, match=appmesh.CfnGatewayRoute.GatewayRouteMetadataMatchProperty( exact="exact", prefix="prefix", range=appmesh.CfnGatewayRoute.GatewayRouteRangeMatchProperty( end=123, start=123 ), regex="regex", suffix="suffix" ) )], port=123, service_name="serviceName" ) ), http2_route=appmesh.CfnGatewayRoute.HttpGatewayRouteProperty( action=appmesh.CfnGatewayRoute.HttpGatewayRouteActionProperty( target=appmesh.CfnGatewayRoute.GatewayRouteTargetProperty( virtual_service=appmesh.CfnGatewayRoute.GatewayRouteVirtualServiceProperty( virtual_service_name="virtualServiceName" ), # the properties below are optional port=123 ), # the properties below are optional rewrite=appmesh.CfnGatewayRoute.HttpGatewayRouteRewriteProperty( hostname=appmesh.CfnGatewayRoute.GatewayRouteHostnameRewriteProperty( default_target_hostname="defaultTargetHostname" ), path=appmesh.CfnGatewayRoute.HttpGatewayRoutePathRewriteProperty( exact="exact" ), prefix=appmesh.CfnGatewayRoute.HttpGatewayRoutePrefixRewriteProperty( default_prefix="defaultPrefix", value="value" ) ) ), match=appmesh.CfnGatewayRoute.HttpGatewayRouteMatchProperty( headers=[appmesh.CfnGatewayRoute.HttpGatewayRouteHeaderProperty( name="name", # the properties below are optional invert=False, match=appmesh.CfnGatewayRoute.HttpGatewayRouteHeaderMatchProperty( exact="exact", prefix="prefix", range=appmesh.CfnGatewayRoute.GatewayRouteRangeMatchProperty( end=123, start=123 ), regex="regex", suffix="suffix" ) )], hostname=appmesh.CfnGatewayRoute.GatewayRouteHostnameMatchProperty( exact="exact", suffix="suffix" ), method="method", path=appmesh.CfnGatewayRoute.HttpPathMatchProperty( exact="exact", regex="regex" ), port=123, prefix="prefix", query_parameters=[appmesh.CfnGatewayRoute.QueryParameterProperty( name="name", # the properties below are optional match=appmesh.CfnGatewayRoute.HttpQueryParameterMatchProperty( exact="exact" ) )] ) ), http_route=appmesh.CfnGatewayRoute.HttpGatewayRouteProperty( action=appmesh.CfnGatewayRoute.HttpGatewayRouteActionProperty( target=appmesh.CfnGatewayRoute.GatewayRouteTargetProperty( virtual_service=appmesh.CfnGatewayRoute.GatewayRouteVirtualServiceProperty( virtual_service_name="virtualServiceName" ), # the properties below are optional port=123 ), # the properties below are optional rewrite=appmesh.CfnGatewayRoute.HttpGatewayRouteRewriteProperty( hostname=appmesh.CfnGatewayRoute.GatewayRouteHostnameRewriteProperty( default_target_hostname="defaultTargetHostname" ), path=appmesh.CfnGatewayRoute.HttpGatewayRoutePathRewriteProperty( exact="exact" ), prefix=appmesh.CfnGatewayRoute.HttpGatewayRoutePrefixRewriteProperty( default_prefix="defaultPrefix", value="value" ) ) ), match=appmesh.CfnGatewayRoute.HttpGatewayRouteMatchProperty( headers=[appmesh.CfnGatewayRoute.HttpGatewayRouteHeaderProperty( name="name", # the properties below are optional invert=False, match=appmesh.CfnGatewayRoute.HttpGatewayRouteHeaderMatchProperty( exact="exact", prefix="prefix", range=appmesh.CfnGatewayRoute.GatewayRouteRangeMatchProperty( end=123, start=123 ), regex="regex", suffix="suffix" ) )], hostname=appmesh.CfnGatewayRoute.GatewayRouteHostnameMatchProperty( exact="exact", suffix="suffix" ), method="method", path=appmesh.CfnGatewayRoute.HttpPathMatchProperty( exact="exact", regex="regex" ), port=123, prefix="prefix", query_parameters=[appmesh.CfnGatewayRoute.QueryParameterProperty( name="name", # the properties below are optional match=appmesh.CfnGatewayRoute.HttpQueryParameterMatchProperty( exact="exact" ) )] ) ), priority=123 ), virtual_gateway_name="virtualGatewayName", # the properties below are optional gateway_route_name="gatewayRouteName", mesh_owner="meshOwner", tags=[CfnTag( key="key", value="value" )] )
Attributes
- gateway_route_name
The name of the gateway route.
- mesh_name
The name of the service mesh that the resource resides in.
- mesh_owner
The AWS IAM account ID of the service mesh owner.
If the account ID is not your own, then it’s the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes .
- spec
The specifications of the gateway route.
- tags
Optional metadata that you can apply to the gateway route to assist with categorization and organization.
Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
- virtual_gateway_name
The virtual gateway that the gateway route is associated with.