interface CfnCostCategoryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CE.Mixins.CfnCostCategoryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsce/mixins#CfnCostCategoryMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ce.mixins.CfnCostCategoryMixinProps |
Python | aws_cdk.mixins_preview.aws_ce.mixins.CfnCostCategoryMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ce » mixins » CfnCostCategoryMixinProps |
Properties for CfnCostCategoryPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html
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 cfnCostCategoryMixinProps: ce_mixins.CfnCostCategoryMixinProps = {
defaultValue: 'defaultValue',
name: 'name',
rules: 'rules',
ruleVersion: 'ruleVersion',
splitChargeRules: 'splitChargeRules',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| default | string | The default value for the cost category. |
| name? | string | The unique name of the Cost Category. |
| rule | string | The rule schema version in this particular Cost Category. |
| rules? | string | The array of CostCategoryRule in JSON array format. |
| split | string | The split charge rules that are used to allocate your charges between your cost category values. |
| tags? | Resource[] | Tags to assign to the cost category. |
defaultValue?
Type:
string
(optional)
The default value for the cost category.
name?
Type:
string
(optional)
The unique name of the Cost Category.
ruleVersion?
Type:
string
(optional)
The rule schema version in this particular Cost Category.
rules?
Type:
string
(optional)
The array of CostCategoryRule in JSON array format.
Rules are processed in order. If there are multiple rules that match the line item, then the first rule to match is used to determine that Cost Category value.
splitChargeRules?
Type:
string
(optional)
The split charge rules that are used to allocate your charges between your cost category values.
tags?
Type:
Resource[]
(optional)
Tags to assign to the cost category.

.NET
Go
Java
Python
TypeScript