interface CfnBillingGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnBillingGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnBillingGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnBillingGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnBillingGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnBillingGroupMixinProps |
Properties for CfnBillingGroupPropsMixin.
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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const cfnBillingGroupMixinProps: iot_mixins.CfnBillingGroupMixinProps = {
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