Interface CfnBillingGroup.AccountGroupingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBillingGroup.AccountGroupingProperty.Jsii$Proxy
- Enclosing class:
CfnBillingGroup
@Stability(Stable)
public static interface CfnBillingGroup.AccountGroupingProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.billingconductor.*;
AccountGroupingProperty accountGroupingProperty = AccountGroupingProperty.builder()
.autoAssociate(false)
.linkedAccountIds(List.of("linkedAccountIds"))
.responsibilityTransferArn("responsibilityTransferArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBillingGroup.AccountGroupingPropertystatic final classAn implementation forCfnBillingGroup.AccountGroupingProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectSpecifies if this billing group will automatically associate newly added AWS accounts that join your consolidated billing family.The account IDs that make up the billing group.default StringThe Amazon Resource Name (ARN) that identifies the transfer relationship owned by the Bill Transfer account (caller account).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAutoAssociate
Specifies if this billing group will automatically associate newly added AWS accounts that join your consolidated billing family.Returns union: either
BooleanorIResolvable- See Also:
-
getLinkedAccountIds
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.
- See Also:
-
getResponsibilityTransferArn
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.
- See Also:
-
builder
-