interface ResourceTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ResilienceHubV2.CfnServicePropsMixin.ResourceTagProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsresiliencehubv2#CfnServicePropsMixin_ResourceTagProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.resiliencehubv2.CfnServicePropsMixin.ResourceTagProperty |
Python | aws_cdk.cfn_property_mixins.aws_resiliencehubv2.CfnServicePropsMixin.ResourceTagProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_resiliencehubv2 » CfnServicePropsMixin » 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/cfn-property-mixins';
const resourceTagProperty: resiliencehubv2.CfnServicePropsMixin.ResourceTagProperty = {
key: 'key',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | Tag key. |
| values? | string[] | Tag values. |
key?
Type:
string
(optional)
Tag key.
values?
Type:
string[]
(optional)
Tag values.

.NET
Go
Java
Python
TypeScript