interface GatewayRouteAttributes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.GatewayRouteAttributes |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#GatewayRouteAttributes |
![]() | software.amazon.awscdk.services.appmesh.GatewayRouteAttributes |
![]() | aws_cdk.aws_appmesh.GatewayRouteAttributes |
![]() | aws-cdk-lib » 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 { aws_appmesh as appmesh } from 'aws-cdk-lib';
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.