Interface CfnCustomLineItem.CustomLineItemPercentageChargeDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCustomLineItem.CustomLineItemPercentageChargeDetailsProperty.Jsii$Proxy
Enclosing class:
CfnCustomLineItem

@Stability(Stable) public static interface CfnCustomLineItem.CustomLineItemPercentageChargeDetailsProperty extends software.amazon.jsii.JsiiSerializable
A representation of the charge details associated with a percentage custom line item.

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.*;
 CustomLineItemPercentageChargeDetailsProperty customLineItemPercentageChargeDetailsProperty = CustomLineItemPercentageChargeDetailsProperty.builder()
         .percentageValue(123)
         // the properties below are optional
         .childAssociatedResources(List.of("childAssociatedResources"))
         .build();