interface Tag
Language | Type name |
---|---|
.NET | Amazon.CDK.cloud_assembly_schema.Tag |
Go | github.com/aws/aws-cdk-go/awscdk/v2/cloudassemblyschema#Tag |
Java | software.amazon.awscdk.cloud_assembly_schema.Tag |
Python | aws_cdk.cloud_assembly_schema.Tag |
TypeScript (source) | aws-cdk-lib » cloud_assembly_schema » Tag |
Metadata Entry spec for stack tag.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { cloud_assembly_schema } from 'aws-cdk-lib';
const tag: cloud_assembly_schema.Tag = {
key: 'key',
value: 'value',
};
Properties
Name | Type | Description |
---|---|---|
key | string | Tag key. |
value | string | Tag value. |
key
Type:
string
Tag key.
(In the actual file on disk this will be cased as "Key", and the structure is patched to match this structure upon loading: https://github.com/aws/aws-cdk/blob/4aadaa779b48f35838cccd4e25107b2338f05547/packages/%40aws-cdk/cloud-assembly-schema/lib/manifest.ts#L137)
value
Type:
string
Tag value.
(In the actual file on disk this will be cased as "Value", and the structure is patched to match this structure upon loading: https://github.com/aws/aws-cdk/blob/4aadaa779b48f35838cccd4e25107b2338f05547/packages/%40aws-cdk/cloud-assembly-schema/lib/manifest.ts#L137)