interface VirtualGatewayAttributes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.VirtualGatewayAttributes |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#VirtualGatewayAttributes |
![]() | software.amazon.awscdk.services.appmesh.VirtualGatewayAttributes |
![]() | aws_cdk.aws_appmesh.VirtualGatewayAttributes |
![]() | 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
Name | Type | Description |
---|---|---|
mesh | IMesh | The Mesh that the VirtualGateway belongs to. |
virtual | string | The name of the VirtualGateway. |
mesh
Type:
IMesh
The Mesh that the VirtualGateway belongs to.
virtualGatewayName
Type:
string
The name of the VirtualGateway.