aws-cdk-lib.aws_appmesh.VirtualRouterAttributes

interface VirtualRouterAttributes

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

NameTypeDescription
meshIMeshThe Mesh which the VirtualRouter belongs to.
virtualRouterNamestringThe name of the VirtualRouter.

mesh

Type: IMesh

The Mesh which the VirtualRouter belongs to.


virtualRouterName

Type: string

The name of the VirtualRouter.