interface ResourceTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CE.CfnAnomalySubscriptionPropsMixin.ResourceTagProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsce#CfnAnomalySubscriptionPropsMixin_ResourceTagProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ce.CfnAnomalySubscriptionPropsMixin.ResourceTagProperty |
Python | aws_cdk.cfn_property_mixins.aws_ce.CfnAnomalySubscriptionPropsMixin.ResourceTagProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ce » CfnAnomalySubscriptionPropsMixin » ResourceTagProperty |
The tag structure that contains a tag key and value.
Tagging is supported only for the following Cost Explorer resource types:
AnomalyMonitor,AnomalySubscription,CostCategory.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ce as ce } from '@aws-cdk/cfn-property-mixins';
const resourceTagProperty: ce.CfnAnomalySubscriptionPropsMixin.ResourceTagProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The key that's associated with the tag. |
| value? | string | The value that's associated with the tag. |
key?
Type:
string
(optional)
The key that's associated with the tag.
value?
Type:
string
(optional)
The value that's associated with the tag.

.NET
Go
Java
Python
TypeScript