interface CustomLineItemPercentageChargeDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BillingConductor.Mixins.CfnCustomLineItemPropsMixin.CustomLineItemPercentageChargeDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbillingconductor/mixins#CfnCustomLineItemPropsMixin_CustomLineItemPercentageChargeDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.billingconductor.mixins.CfnCustomLineItemPropsMixin.CustomLineItemPercentageChargeDetailsProperty |
Python | aws_cdk.mixins_preview.aws_billingconductor.mixins.CfnCustomLineItemPropsMixin.CustomLineItemPercentageChargeDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_billingconductor » mixins » CfnCustomLineItemPropsMixin » CustomLineItemPercentageChargeDetailsProperty |
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 { mixins as billingconductor_mixins } from '@aws-cdk/mixins-preview/aws-billingconductor';
const customLineItemPercentageChargeDetailsProperty: billingconductor_mixins.CfnCustomLineItemPropsMixin.CustomLineItemPercentageChargeDetailsProperty = {
childAssociatedResources: ['childAssociatedResources'],
percentageValue: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| child | string[] | A list of resource ARNs to associate to the percentage custom line item. |
| percentage | number | The custom line item's percentage value. |
childAssociatedResources?
Type:
string[]
(optional)
A list of resource ARNs to associate to the percentage custom line item.
percentageValue?
Type:
number
(optional)
The custom line item's percentage value.
This will be multiplied against the combined value of its associated resources to determine its charge value.

.NET
Go
Java
Python
TypeScript