Interface CfnCustomLineItem.BillingPeriodRangeProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnCustomLineItem.BillingPeriodRangeProperty.Jsii$Proxy
- Enclosing class:
- CfnCustomLineItem
@Stability(Stable)
public static interface CfnCustomLineItem.BillingPeriodRangeProperty
extends software.amazon.jsii.JsiiSerializable
The billing period range in which the custom line item request will be applied.
 
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.*;
 BillingPeriodRangeProperty billingPeriodRangeProperty = BillingPeriodRangeProperty.builder()
         .exclusiveEndBillingPeriod("exclusiveEndBillingPeriod")
         .inclusiveStartBillingPeriod("inclusiveStartBillingPeriod")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCustomLineItem.BillingPeriodRangePropertystatic final classAn implementation forCfnCustomLineItem.BillingPeriodRangeProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getExclusiveEndBillingPeriodThe exclusive end billing period that defines a billing period range where a custom line is applied.
- 
getInclusiveStartBillingPeriodThe inclusive start billing period that defines a billing period range where a custom line is applied.
- 
builder
 
-