interface CfnBillScenarioMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BcmPricingCalculator.CfnBillScenarioMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbcmpricingcalculator#CfnBillScenarioMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bcmpricingcalculator.CfnBillScenarioMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bcmpricingcalculator.CfnBillScenarioMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bcmpricingcalculator » CfnBillScenarioMixinProps |
Properties for CfnBillScenarioPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bcmpricingcalculator as bcmpricingcalculator } from '@aws-cdk/cfn-property-mixins';
const cfnBillScenarioMixinProps: bcmpricingcalculator.CfnBillScenarioMixinProps = {
costCategoryGroupSharingPreferenceArn: 'costCategoryGroupSharingPreferenceArn',
expiresAt: 'expiresAt',
groupSharingPreference: 'groupSharingPreference',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cost | string | The ARN of the cost category group sharing preference. |
| expires | string | The timestamp when the bill scenario expires. |
| group | string | |
| name? | string | The name of the bill scenario. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
costCategoryGroupSharingPreferenceArn?
Type:
string
(optional)
The ARN of the cost category group sharing preference.
expiresAt?
Type:
string
(optional)
The timestamp when the bill scenario expires.
groupSharingPreference?
Type:
string
(optional)
name?
Type:
string
(optional)
The name of the bill scenario.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript