interface GatewayRouteAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppMesh.GatewayRouteAttributes |
Java | software.amazon.awscdk.services.appmesh.GatewayRouteAttributes |
Python | aws_cdk.aws_appmesh.GatewayRouteAttributes |
TypeScript (source) | @aws-cdk/aws-appmesh » GatewayRouteAttributes |
Interface with properties necessary to import a reusable GatewayRoute.
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';
declare const virtualGateway: appmesh.VirtualGateway;
const gatewayRouteAttributes: appmesh.GatewayRouteAttributes = {
gatewayRouteName: 'gatewayRouteName',
virtualGateway: virtualGateway,
};
Properties
| Name | Type | Description |
|---|---|---|
| gateway | string | The name of the GatewayRoute. |
| virtual | IVirtual | The VirtualGateway this GatewayRoute is associated with. |
gatewayRouteName
Type:
string
The name of the GatewayRoute.
virtualGateway
Type:
IVirtual
The VirtualGateway this GatewayRoute is associated with.

.NET
Java
Python
TypeScript (