aws-cdk-lib.aws_appmesh.GatewayRouteAttributes

interface GatewayRouteAttributes

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.GatewayRouteAttributes
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#GatewayRouteAttributes
Javasoftware.amazon.awscdk.services.appmesh.GatewayRouteAttributes
Pythonaws_cdk.aws_appmesh.GatewayRouteAttributes
TypeScript (source)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

NameTypeDescription
gatewayRouteNamestringThe name of the GatewayRoute.
virtualGatewayIVirtualGatewayThe VirtualGateway this GatewayRoute is associated with.

gatewayRouteName

Type: string

The name of the GatewayRoute.


virtualGateway

Type: IVirtualGateway

The VirtualGateway this GatewayRoute is associated with.