interface CfnBillingGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BillingConductor.Mixins.CfnBillingGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbillingconductor/mixins#CfnBillingGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.billingconductor.mixins.CfnBillingGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_billingconductor.mixins.CfnBillingGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_billingconductor » mixins » CfnBillingGroupMixinProps |
Properties for CfnBillingGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as billingconductor_mixins } from '@aws-cdk/mixins-preview/aws-billingconductor';
const cfnBillingGroupMixinProps: billingconductor_mixins.CfnBillingGroupMixinProps = {
accountGrouping: {
autoAssociate: false,
linkedAccountIds: ['linkedAccountIds'],
responsibilityTransferArn: 'responsibilityTransferArn',
},
computationPreference: {
pricingPlanArn: 'pricingPlanArn',
},
description: 'description',
name: 'name',
primaryAccountId: 'primaryAccountId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | IResolvable | Account | The set of accounts that will be under the billing group. |
| computation | IResolvable | Computation | The preferences and settings that will be used to compute the AWS charges for a billing group. |
| description? | string | The description of the billing group. |
| name? | string | The billing group's name. |
| primary | string | The account ID that serves as the main account in a billing group. |
| tags? | Cfn[] | A map that contains tag keys and tag values that are attached to a billing group. |
accountGrouping?
Type:
IResolvable | Account
(optional)
The set of accounts that will be under the billing group.
The set of accounts resemble the linked accounts in a consolidated billing family.
computationPreference?
Type:
IResolvable | Computation
(optional)
The preferences and settings that will be used to compute the AWS charges for a billing group.
description?
Type:
string
(optional)
The description of the billing group.
name?
Type:
string
(optional)
The billing group's name.
primaryAccountId?
Type:
string
(optional)
The account ID that serves as the main account in a billing group.
tags?
Type:
Cfn[]
(optional)
A map that contains tag keys and tag values that are attached to a billing group.

.NET
Go
Java
Python
TypeScript