interface AttributeMapItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.FinSpace.CfnEnvironmentPropsMixin.AttributeMapItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsfinspace#CfnEnvironmentPropsMixin_AttributeMapItemsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.finspace.CfnEnvironmentPropsMixin.AttributeMapItemsProperty |
Python | aws_cdk.cfn_property_mixins.aws_finspace.CfnEnvironmentPropsMixin.AttributeMapItemsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_finspace » CfnEnvironmentPropsMixin » AttributeMapItemsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_finspace as finspace } from '@aws-cdk/cfn-property-mixins';
const attributeMapItemsProperty: finspace.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