interface VirtualNodeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppMesh.VirtualNodeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappmesh#VirtualNodeReference |
Java | software.amazon.awscdk.interfaces.appmesh.VirtualNodeReference |
Python | aws_cdk.interfaces.aws_appmesh.VirtualNodeReference |
TypeScript | aws-cdk-lib » interfaces » aws_appmesh » VirtualNodeReference |
A reference to a VirtualNode resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appmesh as interfaces_aws_appmesh } from 'aws-cdk-lib/interfaces';
const virtualNodeReference: interfaces_aws_appmesh.VirtualNodeReference = {
virtualNodeArn: 'virtualNodeArn',
virtualNodeId: 'virtualNodeId',
};
Properties
| Name | Type | Description |
|---|---|---|
| virtual | string | The ARN of the VirtualNode resource. |
| virtual | string | The Id of the VirtualNode resource. |
virtualNodeArn
Type:
string
The ARN of the VirtualNode resource.
virtualNodeId
Type:
string
The Id of the VirtualNode resource.

.NET
Go
Java
Python
TypeScript