interface PresentationDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BillingConductor.CfnCustomLineItem.PresentationDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbillingconductor#CfnCustomLineItem_PresentationDetailsProperty |
Java | software.amazon.awscdk.services.billingconductor.CfnCustomLineItem.PresentationDetailsProperty |
Python | aws_cdk.aws_billingconductor.CfnCustomLineItem.PresentationDetailsProperty |
TypeScript | aws-cdk-lib » aws_billingconductor » CfnCustomLineItem » PresentationDetailsProperty |
An object that defines how custom line item charges are presented in the bill, containing specifications for service presentation.
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-lib';
const presentationDetailsProperty: billingconductor.CfnCustomLineItem.PresentationDetailsProperty = {
service: 'service',
};
Properties
| Name | Type | Description |
|---|---|---|
| service | string | The service under which the custom line item charges will be presented. |
service
Type:
string
The service under which the custom line item charges will be presented.
Must be a string between 1 and 128 characters matching the pattern ^[a-zA-Z0-9]+$ .

.NET
Go
Java
Python
TypeScript