interface CfnBillingGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BillingConductor.CfnBillingGroupProps |
Java | software.amazon.awscdk.services.billingconductor.CfnBillingGroupProps |
Python | aws_cdk.aws_billingconductor.CfnBillingGroupProps |
TypeScript | @aws-cdk/aws-billingconductor » CfnBillingGroupProps |
Properties for defining a CfnBillingGroup.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as billingconductor from '@aws-cdk/aws-billingconductor';
const cfnBillingGroupProps: billingconductor.CfnBillingGroupProps = {
accountGrouping: {
linkedAccountIds: ['linkedAccountIds'],
},
computationPreference: {
pricingPlanArn: 'pricingPlanArn',
},
name: 'name',
primaryAccountId: 'primaryAccountId',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | Account | IResolvable | 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. |
| name | string | The billing group's name. |
| primary | string | The account ID that serves as the main account in a billing group. |
| description? | string | The description of the billing group. |
| tags? | Cfn[] | AWS::BillingConductor::BillingGroup.Tags. |
accountGrouping
Type:
Account | IResolvable
The set of accounts that will be under the billing group.
The set of accounts resemble the linked accounts in a consolidated family.
computationPreference
Type:
IResolvable | Computation
The preferences and settings that will be used to compute the AWS charges for a billing group.
name
Type:
string
The billing group's name.
primaryAccountId
Type:
string
The account ID that serves as the main account in a billing group.
description?
Type:
string
(optional)
The description of the billing group.
tags?
Type:
Cfn[]
(optional)
AWS::BillingConductor::BillingGroup.Tags.

.NET
Java
Python
TypeScript