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() .linkedAccountIds(List.of("linkedAccountIds")) // the properties below are optional .autoAssociate(false) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBillingGroup.AccountGroupingProperty
static final class
An implementation forCfnBillingGroup.AccountGroupingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
getAutoAssociate
Specifies if this billing group will automatically associate newly added AWS accounts that join your consolidated billing family.- See Also:
-
builder
-