interface BillingPeriodRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BillingConductor.Mixins.CfnCustomLineItemPropsMixin.BillingPeriodRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbillingconductor/mixins#CfnCustomLineItemPropsMixin_BillingPeriodRangeProperty |
Java | software.amazon.awscdk.mixins.preview.services.billingconductor.mixins.CfnCustomLineItemPropsMixin.BillingPeriodRangeProperty |
Python | aws_cdk.mixins_preview.aws_billingconductor.mixins.CfnCustomLineItemPropsMixin.BillingPeriodRangeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_billingconductor » mixins » CfnCustomLineItemPropsMixin » BillingPeriodRangeProperty |
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 { mixins as billingconductor_mixins } from '@aws-cdk/mixins-preview/aws-billingconductor';
const billingPeriodRangeProperty: billingconductor_mixins.CfnCustomLineItemPropsMixin.BillingPeriodRangeProperty = {
exclusiveEndBillingPeriod: 'exclusiveEndBillingPeriod',
inclusiveStartBillingPeriod: 'inclusiveStartBillingPeriod',
};
Properties
| Name | Type | Description |
|---|---|---|
| exclusive | string | The exclusive end billing period that defines a billing period range where a custom line is applied. |
| inclusive | string | The inclusive start billing period that defines a billing period range where a custom line is applied. |
exclusiveEndBillingPeriod?
Type:
string
(optional)
The exclusive end billing period that defines a billing period range where a custom line is applied.
inclusiveStartBillingPeriod?
Type:
string
(optional)
The inclusive start billing period that defines a billing period range where a custom line is applied.

.NET
Go
Java
Python
TypeScript