interface CustomLineItemPercentageChargeDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BillingConductor.CfnCustomLineItemPropsMixin.CustomLineItemPercentageChargeDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbillingconductor#CfnCustomLineItemPropsMixin_CustomLineItemPercentageChargeDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.billingconductor.CfnCustomLineItemPropsMixin.CustomLineItemPercentageChargeDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_billingconductor.CfnCustomLineItemPropsMixin.CustomLineItemPercentageChargeDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_billingconductor » 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 { aws_billingconductor as billingconductor } from '@aws-cdk/cfn-property-mixins';
const customLineItemPercentageChargeDetailsProperty: billingconductor.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