@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.922Z") @Stability(value=Stable) public interface CfnBillingGroupProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnBillingGroupProps cfnBillingGroupProps = CfnBillingGroupProps.builder()
.accountGrouping(AccountGroupingProperty.builder()
.linkedAccountIds(List.of("linkedAccountIds"))
.build())
.computationPreference(ComputationPreferenceProperty.builder()
.pricingPlanArn("pricingPlanArn")
.build())
.name("name")
.primaryAccountId("primaryAccountId")
// the properties below are optional
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnBillingGroupProps.Builder
A builder for
CfnBillingGroupProps |
static class |
CfnBillingGroupProps.Jsii$Proxy
An implementation for
CfnBillingGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnBillingGroupProps.Builder |
builder() |
Object |
getAccountGrouping()
The set of accounts that will be under the billing group.
|
Object |
getComputationPreference()
The preferences and settings that will be used to compute the AWS charges for a billing group.
|
default String |
getDescription()
The billing group description.
|
String |
getName()
The billing group's name.
|
String |
getPrimaryAccountId()
The account ID that serves as the main account in a billing group.
|
default List<CfnTag> |
getTags()
`AWS::BillingConductor::BillingGroup.Tags`.
|
@Stability(value=Stable) @NotNull Object getAccountGrouping()
The set of accounts resemble the linked accounts in a consolidated family.
@Stability(value=Stable) @NotNull Object getComputationPreference()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getPrimaryAccountId()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnBillingGroupProps.Builder builder()
CfnBillingGroupProps.Builder of CfnBillingGroupPropsCopyright © 2022. All rights reserved.