interface AccountGroupingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BillingConductor.CfnBillingGroup.AccountGroupingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbillingconductor#CfnBillingGroup_AccountGroupingProperty |
Java | software.amazon.awscdk.services.billingconductor.CfnBillingGroup.AccountGroupingProperty |
Python | aws_cdk.aws_billingconductor.CfnBillingGroup.AccountGroupingProperty |
TypeScript | aws-cdk-lib » aws_billingconductor » CfnBillingGroup » 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 { aws_billingconductor as billingconductor } from 'aws-cdk-lib';
const accountGroupingProperty: billingconductor.CfnBillingGroup.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 | The Amazon Resource Name (ARN) that identifies the transfer relationship owned by the Bill Transfer account (caller account). |
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)
The Amazon Resource Name (ARN) that identifies the transfer relationship owned by the Bill Transfer account (caller account).
When specified, the PrimaryAccountId is no longer required.

.NET
Go
Java
Python
TypeScript