interface VirtualNodeAttributes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.VirtualNodeAttributes |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#VirtualNodeAttributes |
![]() | software.amazon.awscdk.services.appmesh.VirtualNodeAttributes |
![]() | aws_cdk.aws_appmesh.VirtualNodeAttributes |
![]() | aws-cdk-lib » aws_appmesh » VirtualNodeAttributes |
Interface with properties necessary to import a reusable VirtualNode.
Example
const virtualNodeName = 'my-virtual-node';
appmesh.VirtualNode.fromVirtualNodeAttributes(this, 'imported-virtual-node', {
mesh: appmesh.Mesh.fromMeshName(this, 'Mesh', 'testMesh'),
virtualNodeName: virtualNodeName,
});
Properties
Name | Type | Description |
---|---|---|
mesh | IMesh | The Mesh that the VirtualNode belongs to. |
virtual | string | The name of the VirtualNode. |
mesh
Type:
IMesh
The Mesh that the VirtualNode belongs to.
virtualNodeName
Type:
string
The name of the VirtualNode.