interface AwsCloudMapInstanceAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnVirtualNodePropsMixin.AwsCloudMapInstanceAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnVirtualNodePropsMixin_AwsCloudMapInstanceAttributeProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnVirtualNodePropsMixin.AwsCloudMapInstanceAttributeProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnVirtualNodePropsMixin.AwsCloudMapInstanceAttributeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » CfnVirtualNodePropsMixin » 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 { mixins as appmesh_mixins } from '@aws-cdk/mixins-preview/aws-appmesh';
const awsCloudMapInstanceAttributeProperty: appmesh_mixins.CfnVirtualNodePropsMixin.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
(optional)
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
(optional)
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