interface VirtualRouterAttributes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.VirtualRouterAttributes |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#VirtualRouterAttributes |
![]() | software.amazon.awscdk.services.appmesh.VirtualRouterAttributes |
![]() | aws_cdk.aws_appmesh.VirtualRouterAttributes |
![]() | aws-cdk-lib » aws_appmesh » VirtualRouterAttributes |
Interface with properties ncecessary to import a reusable VirtualRouter.
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 virtualRouterAttributes: appmesh.VirtualRouterAttributes = {
mesh: mesh,
virtualRouterName: 'virtualRouterName',
};
Properties
Name | Type | Description |
---|---|---|
mesh | IMesh | The Mesh which the VirtualRouter belongs to. |
virtual | string | The name of the VirtualRouter. |
mesh
Type:
IMesh
The Mesh which the VirtualRouter belongs to.
virtualRouterName
Type:
string
The name of the VirtualRouter.