interface GatewayRouteHostnameMatchConfig
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppMesh.GatewayRouteHostnameMatchConfig | 
|  Java | software.amazon.awscdk.services.appmesh.GatewayRouteHostnameMatchConfig | 
|  Python | aws_cdk.aws_appmesh.GatewayRouteHostnameMatchConfig | 
|  TypeScript (source) | @aws-cdk/aws-appmesh»GatewayRouteHostnameMatchConfig | 
Obtainable from
Gateway.bind()
Configuration for gateway route host name match.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appmesh from '@aws-cdk/aws-appmesh';
const gatewayRouteHostnameMatchConfig: appmesh.GatewayRouteHostnameMatchConfig = {
  hostnameMatch: {
    exact: 'exact',
    suffix: 'suffix',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| hostname | Gateway | GatewayRoute CFN configuration for host name match. | 
hostnameMatch
Type:
Gateway
GatewayRoute CFN configuration for host name match.
