interface GatewayRouteHostnameMatchProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppMesh.CfnGatewayRoute.GatewayRouteHostnameMatchProperty |
Java | software.amazon.awscdk.services.appmesh.CfnGatewayRoute.GatewayRouteHostnameMatchProperty |
Python | aws_cdk.aws_appmesh.CfnGatewayRoute.GatewayRouteHostnameMatchProperty |
TypeScript | @aws-cdk/aws-appmesh » CfnGatewayRoute » GatewayRouteHostnameMatchProperty |
An object representing the gateway route host name to 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 gatewayRouteHostnameMatchProperty: appmesh.CfnGatewayRoute.GatewayRouteHostnameMatchProperty = {
exact: 'exact',
suffix: 'suffix',
};
Properties
| Name | Type | Description |
|---|---|---|
| exact? | string | The exact host name to match on. |
| suffix? | string | The specified ending characters of the host name to match on. |
exact?
Type:
string
(optional)
The exact host name to match on.
suffix?
Type:
string
(optional)
The specified ending characters of the host name to match on.

.NET
Java
Python
TypeScript