interface TagsItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Backup.CfnLegalHold.TagsItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbackup#CfnLegalHold_TagsItemsProperty |
Java | software.amazon.awscdk.services.backup.CfnLegalHold.TagsItemsProperty |
Python | aws_cdk.aws_backup.CfnLegalHold.TagsItemsProperty |
TypeScript | aws-cdk-lib » aws_backup » CfnLegalHold » TagsItemsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_backup as backup } from 'aws-cdk-lib';
const tagsItemsProperty: backup.CfnLegalHold.TagsItemsProperty = {
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
The key name of the tag.
value
Type:
string
The value for the tag.

.NET
Go
Java
Python
TypeScript