@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:25.437Z") @Stability(value=Stable) public interface CfnCustomLineItemProps 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.*;
CfnCustomLineItemProps cfnCustomLineItemProps = CfnCustomLineItemProps.builder()
.billingGroupArn("billingGroupArn")
.name("name")
// the properties below are optional
.billingPeriodRange(BillingPeriodRangeProperty.builder()
.exclusiveEndBillingPeriod("exclusiveEndBillingPeriod")
.inclusiveStartBillingPeriod("inclusiveStartBillingPeriod")
.build())
.customLineItemChargeDetails(CustomLineItemChargeDetailsProperty.builder()
.type("type")
// the properties below are optional
.flat(CustomLineItemFlatChargeDetailsProperty.builder()
.chargeValue(123)
.build())
.percentage(CustomLineItemPercentageChargeDetailsProperty.builder()
.percentageValue(123)
// the properties below are optional
.childAssociatedResources(List.of("childAssociatedResources"))
.build())
.build())
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCustomLineItemProps.Builder
A builder for
CfnCustomLineItemProps |
static class |
CfnCustomLineItemProps.Jsii$Proxy
An implementation for
CfnCustomLineItemProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnCustomLineItemProps.Builder |
builder() |
String |
getBillingGroupArn()
`AWS::BillingConductor::CustomLineItem.BillingGroupArn`.
|
default Object |
getBillingPeriodRange()
`AWS::BillingConductor::CustomLineItem.BillingPeriodRange`.
|
default Object |
getCustomLineItemChargeDetails()
`AWS::BillingConductor::CustomLineItem.CustomLineItemChargeDetails`.
|
default String |
getDescription()
`AWS::BillingConductor::CustomLineItem.Description`.
|
String |
getName()
`AWS::BillingConductor::CustomLineItem.Name`.
|
default List<CfnTag> |
getTags()
`AWS::BillingConductor::CustomLineItem.Tags`.
|
@Stability(value=Stable) @NotNull String getBillingGroupArn()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default Object getBillingPeriodRange()
@Stability(value=Stable) @Nullable default Object getCustomLineItemChargeDetails()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnCustomLineItemProps.Builder builder()
CfnCustomLineItemProps.Builder of CfnCustomLineItemPropsCopyright © 2022. All rights reserved.