aws-cdk-lib.aws_appmesh.VirtualGatewayAttributes

interface VirtualGatewayAttributes

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.VirtualGatewayAttributes
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#VirtualGatewayAttributes
Javasoftware.amazon.awscdk.services.appmesh.VirtualGatewayAttributes
Pythonaws_cdk.aws_appmesh.VirtualGatewayAttributes
TypeScript (source)aws-cdk-lib » aws_appmesh » VirtualGatewayAttributes

Unterface with properties necessary to import a reusable VirtualGateway.

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 mesh: appmesh.Mesh;
const virtualGatewayAttributes: appmesh.VirtualGatewayAttributes = {
  mesh: mesh,
  virtualGatewayName: 'virtualGatewayName',
};

Properties

NameTypeDescription
meshIMeshThe Mesh that the VirtualGateway belongs to.
virtualGatewayNamestringThe name of the VirtualGateway.

mesh

Type: IMesh

The Mesh that the VirtualGateway belongs to.


virtualGatewayName

Type: string

The name of the VirtualGateway.