interface AttributeMapItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FinSpace.Mixins.CfnEnvironmentPropsMixin.AttributeMapItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfinspace/mixins#CfnEnvironmentPropsMixin_AttributeMapItemsProperty |
Java | software.amazon.awscdk.mixins.preview.services.finspace.mixins.CfnEnvironmentPropsMixin.AttributeMapItemsProperty |
Python | aws_cdk.mixins_preview.aws_finspace.mixins.CfnEnvironmentPropsMixin.AttributeMapItemsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_finspace » mixins » CfnEnvironmentPropsMixin » AttributeMapItemsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as finspace_mixins } from '@aws-cdk/mixins-preview/aws-finspace';
const attributeMapItemsProperty: finspace_mixins.CfnEnvironmentPropsMixin.AttributeMapItemsProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The key name of the tag. |
| value? | string | The value for the tag. |
key?
Type:
string
(optional)
The key name of the tag.
You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
value?
Type:
string
(optional)
The value for the tag.
You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.

.NET
Go
Java
Python
TypeScript