GatewayRouteHostnameMatchConfig

class aws_cdk.aws_appmesh.GatewayRouteHostnameMatchConfig(*, hostname_match)

Bases: object

Configuration for gateway route host name match.

Parameters:

hostname_match (Union[GatewayRouteHostnameMatchProperty, Dict[str, Any]]) – GatewayRoute CFN configuration for host name match.

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_hostname_match_config = appmesh.GatewayRouteHostnameMatchConfig(
    hostname_match=appmesh.CfnGatewayRoute.GatewayRouteHostnameMatchProperty(
        exact="exact",
        suffix="suffix"
    )
)

Attributes

hostname_match

GatewayRoute CFN configuration for host name match.