Interface IVirtualNodeAttributes
Interface with properties necessary to import a reusable VirtualNode.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IVirtualNodeAttributes
Syntax (vb)
Public Interface IVirtualNodeAttributes
Remarks
ExampleMetadata: infused
Examples
var virtualNodeName = "my-virtual-node";
VirtualNode.FromVirtualNodeAttributes(this, "imported-virtual-node", new VirtualNodeAttributes {
Mesh = Mesh.FromMeshName(this, "Mesh", "testMesh"),
VirtualNodeName = virtualNodeName
});
Synopsis
Properties
| Mesh | The Mesh that the VirtualNode belongs to. |
| VirtualNodeName | The name of the VirtualNode. |
Properties
Mesh
The Mesh that the VirtualNode belongs to.
IMesh Mesh { get; }
Property Value
Remarks
ExampleMetadata: infused
VirtualNodeName
The name of the VirtualNode.
string VirtualNodeName { get; }
Property Value
Remarks
ExampleMetadata: infused