Interface CfnBillingGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBillingGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-27T13:12:12.191Z")
@Stability(Stable)
public interface CfnBillingGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnBillingGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.billingconductor.*;
CfnBillingGroupMixinProps cfnBillingGroupMixinProps = CfnBillingGroupMixinProps.builder()
.accountGrouping(AccountGroupingProperty.builder()
.autoAssociate(false)
.linkedAccountIds(List.of("linkedAccountIds"))
.responsibilityTransferArn("responsibilityTransferArn")
.build())
.computationPreference(ComputationPreferenceProperty.builder()
.pricingPlanArn("pricingPlanArn")
.build())
.description("description")
.name("name")
.primaryAccountId("primaryAccountId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBillingGroupMixinPropsstatic final classAn implementation forCfnBillingGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe set of accounts that will be under the billing group.default ObjectThe preferences and settings that will be used to compute the AWS charges for a billing group.default StringThe description of the billing group.default StringgetName()The billing group's name.default StringThe account ID that serves as the main account in a billing group.getTags()A map that contains tag keys and tag values that are attached to a billing group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountGrouping
The set of accounts that will be under the billing group.The set of accounts resemble the linked accounts in a consolidated billing family.
Returns union: either
IResolvableorCfnBillingGroupPropsMixin.AccountGroupingProperty- See Also:
-
getComputationPreference
The preferences and settings that will be used to compute the AWS charges for a billing group.Returns union: either
IResolvableorCfnBillingGroupPropsMixin.ComputationPreferenceProperty- See Also:
-
getDescription
The description of the billing group.- See Also:
-
getName
The billing group's name.- See Also:
-
getPrimaryAccountId
The account ID that serves as the main account in a billing group.- See Also:
-
getTags
A map that contains tag keys and tag values that are attached to a billing group.- See Also:
-
builder
- Returns:
- a
CfnBillingGroupMixinProps.BuilderofCfnBillingGroupMixinProps
-