interface CostCategoryValuesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Budgets.CfnBudgetPropsMixin.CostCategoryValuesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbudgets#CfnBudgetPropsMixin_CostCategoryValuesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.budgets.CfnBudgetPropsMixin.CostCategoryValuesProperty |
Python | aws_cdk.cfn_property_mixins.aws_budgets.CfnBudgetPropsMixin.CostCategoryValuesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_budgets » CfnBudgetPropsMixin » CostCategoryValuesProperty |
The cost category values used for filtering the costs.
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 costCategoryValuesProperty: budgets.CfnBudgetPropsMixin.CostCategoryValuesProperty = {
key: 'key',
matchOptions: ['matchOptions'],
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The unique name of the cost category. |
| match | string[] | The match options that you can use to filter your results. |
| values? | string[] | The specific value of the cost category. |
key?
Type:
string
(optional)
The unique name of the cost category.
matchOptions?
Type:
string[]
(optional)
The match options that you can use to filter your results.
values?
Type:
string[]
(optional)
The specific value of the cost category.

.NET
Go
Java
Python
TypeScript