interface CfnCustomLineItemProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BillingConductor.CfnCustomLineItemProps |
Java | software.amazon.awscdk.services.billingconductor.CfnCustomLineItemProps |
Python | aws_cdk.aws_billingconductor.CfnCustomLineItemProps |
TypeScript | @aws-cdk/aws-billingconductor » CfnCustomLineItemProps |
Properties for defining a CfnCustomLineItem.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as billingconductor from '@aws-cdk/aws-billingconductor';
const cfnCustomLineItemProps: billingconductor.CfnCustomLineItemProps = {
billingGroupArn: 'billingGroupArn',
name: 'name',
// the properties below are optional
billingPeriodRange: {
exclusiveEndBillingPeriod: 'exclusiveEndBillingPeriod',
inclusiveStartBillingPeriod: 'inclusiveStartBillingPeriod',
},
customLineItemChargeDetails: {
type: 'type',
// the properties below are optional
flat: {
chargeValue: 123,
},
percentage: {
percentageValue: 123,
// the properties below are optional
childAssociatedResources: ['childAssociatedResources'],
},
},
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| billing | string | The Amazon Resource Name (ARN) that references the billing group where the custom line item applies to. |
| name | string | The custom line item's name. |
| billing | IResolvable | Billing | A time range for which the custom line item is effective. |
| custom | IResolvable | Custom | The charge details of a custom line item. |
| description? | string | The custom line item's description. |
| tags? | Cfn[] | A map that contains tag keys and tag values that are attached to a custom line item. |
billingGroupArn
Type:
string
The Amazon Resource Name (ARN) that references the billing group where the custom line item applies to.
name
Type:
string
The custom line item's name.
billingPeriodRange?
Type:
IResolvable | Billing
(optional)
A time range for which the custom line item is effective.
customLineItemChargeDetails?
Type:
IResolvable | Custom
(optional)
The charge details of a custom line item.
It should contain only one of Flat or Percentage .
description?
Type:
string
(optional)
The custom line item's description.
This is shown on the Bills page in association with the charge value.
tags?
Type:
Cfn[]
(optional)
A map that contains tag keys and tag values that are attached to a custom line item.

.NET
Java
Python
TypeScript