interface CfnTag
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.CfnTag | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2#CfnTag | 
|  Java | software.amazon.awscdk.CfnTag | 
|  Python | aws_cdk.CfnTag | 
|  TypeScript (source) | aws-cdk-lib»CfnTag | 
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
const cfnTag: cdk.CfnTag = {
  key: 'key',
  value: 'value',
};
Properties
| Name | Type | Description | 
|---|---|---|
| key | string | |
| value | string | 
key
Type:
string
value
Type:
string
