interface CfnBillingGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnBillingGroupProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnBillingGroupProps |
Java | software.amazon.awscdk.services.iot.CfnBillingGroupProps |
Python | aws_cdk.aws_iot.CfnBillingGroupProps |
TypeScript | aws-cdk-lib » aws_iot » CfnBillingGroupProps |
Properties for defining a CfnBillingGroup.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-billinggroup.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as iot } from 'aws-cdk-lib';
const cfnBillingGroupProps: iot.CfnBillingGroupProps = {
billingGroupName: 'billingGroupName',
billingGroupProperties: {
billingGroupDescription: 'billingGroupDescription',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| billing | string | The name of the billing group. |
| billing | IResolvable | Billing | The properties of the billing group. |
| tags? | Cfn[] | Metadata which can be used to manage the billing group. |
billingGroupName?
Type:
string
(optional)
The name of the billing group.
billingGroupProperties?
Type:
IResolvable | Billing
(optional)
The properties of the billing group.
tags?
Type:
Cfn[]
(optional)
Metadata which can be used to manage the billing group.

.NET
Go
Java
Python
TypeScript