interface ResourceTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ResilienceHubV2.CfnService.ResourceTagProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresiliencehubv2#CfnService_ResourceTagProperty |
Java | software.amazon.awscdk.services.resiliencehubv2.CfnService.ResourceTagProperty |
Python | aws_cdk.aws_resiliencehubv2.CfnService.ResourceTagProperty |
TypeScript | aws-cdk-lib » aws_resiliencehubv2 » CfnService » ResourceTagProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_resiliencehubv2 as resiliencehubv2 } from 'aws-cdk-lib';
const resourceTagProperty: resiliencehubv2.CfnService.ResourceTagProperty = {
key: 'key',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | Tag key. |
| values | string[] | Tag values. |
key
Type:
string
Tag key.
values
Type:
string[]
Tag values.

.NET
Go
Java
Python
TypeScript