interface TagValuesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Budgets.CfnBudgetPropsMixin.TagValuesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbudgets#CfnBudgetPropsMixin_TagValuesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.budgets.CfnBudgetPropsMixin.TagValuesProperty |
Python | aws_cdk.cfn_property_mixins.aws_budgets.CfnBudgetPropsMixin.TagValuesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_budgets » CfnBudgetPropsMixin » TagValuesProperty |
The values that are available for a tag.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_budgets as budgets } from '@aws-cdk/cfn-property-mixins';
const tagValuesProperty: budgets.CfnBudgetPropsMixin.TagValuesProperty = {
key: 'key',
matchOptions: ['matchOptions'],
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The key for the tag. |
| match | string[] | The match options that you can use to filter your results. |
| values? | string[] | The specific value of the tag. |
key?
Type:
string
(optional)
The key for the tag.
matchOptions?
Type:
string[]
(optional)
The match options that you can use to filter your results.
values?
Type:
string[]
(optional)
The specific value of the tag.

.NET
Go
Java
Python
TypeScript