interface ResourceTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Budgets.Mixins.CfnBudgetsActionPropsMixin.ResourceTagProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbudgets/mixins#CfnBudgetsActionPropsMixin_ResourceTagProperty |
Java | software.amazon.awscdk.mixins.preview.services.budgets.mixins.CfnBudgetsActionPropsMixin.ResourceTagProperty |
Python | aws_cdk.mixins_preview.aws_budgets.mixins.CfnBudgetsActionPropsMixin.ResourceTagProperty |
TypeScript | @aws-cdk/mixins-preview » aws_budgets » mixins » CfnBudgetsActionPropsMixin » ResourceTagProperty |
The tag structure that contains a tag key and value.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as budgets_mixins } from '@aws-cdk/mixins-preview/aws-budgets';
const resourceTagProperty: budgets_mixins.CfnBudgetsActionPropsMixin.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