interface AccountGroupingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BillingConductor.Mixins.CfnBillingGroupPropsMixin.AccountGroupingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbillingconductor/mixins#CfnBillingGroupPropsMixin_AccountGroupingProperty |
Java | software.amazon.awscdk.mixins.preview.services.billingconductor.mixins.CfnBillingGroupPropsMixin.AccountGroupingProperty |
Python | aws_cdk.mixins_preview.aws_billingconductor.mixins.CfnBillingGroupPropsMixin.AccountGroupingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_billingconductor » mixins » CfnBillingGroupPropsMixin » AccountGroupingProperty |
The set of accounts that will be under the billing group.
The set of accounts resemble the linked accounts in a consolidated billing family.
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 accountGroupingProperty: billingconductor_mixins.CfnBillingGroupPropsMixin.AccountGroupingProperty = {
autoAssociate: false,
linkedAccountIds: ['linkedAccountIds'],
responsibilityTransferArn: 'responsibilityTransferArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | boolean | IResolvable | Specifies if this billing group will automatically associate newly added AWS accounts that join your consolidated billing family. |
| linked | string[] | The account IDs that make up the billing group. |
| responsibility | string |
autoAssociate?
Type:
boolean | IResolvable
(optional)
Specifies if this billing group will automatically associate newly added AWS accounts that join your consolidated billing family.
linkedAccountIds?
Type:
string[]
(optional)
The account IDs that make up the billing group.
Account IDs must be a part of the consolidated billing family, and not associated with another billing group.
responsibilityTransferArn?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript