interface AwsCloudMapInstanceAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppMesh.CfnVirtualNode.AwsCloudMapInstanceAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnVirtualNode_AwsCloudMapInstanceAttributeProperty |
Java | software.amazon.awscdk.services.appmesh.CfnVirtualNode.AwsCloudMapInstanceAttributeProperty |
Python | aws_cdk.aws_appmesh.CfnVirtualNode.AwsCloudMapInstanceAttributeProperty |
TypeScript | aws-cdk-lib » aws_appmesh » CfnVirtualNode » AwsCloudMapInstanceAttributeProperty |
An object that represents the AWS Cloud Map attribute information for your virtual node.
AWS Cloud Map is not available in the eu-south-1 Region.
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';
const awsCloudMapInstanceAttributeProperty: appmesh.CfnVirtualNode.AwsCloudMapInstanceAttributeProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The name of an AWS Cloud Map service instance attribute key. |
| value | string | The value of an AWS Cloud Map service instance attribute key. |
key
Type:
string
The name of an AWS Cloud Map service instance attribute key.
Any AWS Cloud Map service instance that contains the specified key and value is returned.
value
Type:
string
The value of an AWS Cloud Map service instance attribute key.
Any AWS Cloud Map service instance that contains the specified key and value is returned.

.NET
Go
Java
Python
TypeScript