interface ResourceTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CE.Mixins.CfnAnomalyMonitorPropsMixin.ResourceTagProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsce/mixins#CfnAnomalyMonitorPropsMixin_ResourceTagProperty |
Java | software.amazon.awscdk.mixins.preview.services.ce.mixins.CfnAnomalyMonitorPropsMixin.ResourceTagProperty |
Python | aws_cdk.mixins_preview.aws_ce.mixins.CfnAnomalyMonitorPropsMixin.ResourceTagProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ce » mixins » CfnAnomalyMonitorPropsMixin » 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 { mixins as ce_mixins } from '@aws-cdk/mixins-preview/aws-ce';
const resourceTagProperty: ce_mixins.CfnAnomalyMonitorPropsMixin.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