CfnBillingGroupMixinProps
- class aws_cdk.mixins_preview.aws_iot.mixins.CfnBillingGroupMixinProps(*, billing_group_name=None, billing_group_properties=None, tags=None)
Bases:
objectProperties for CfnBillingGroupPropsMixin.
- Parameters:
billing_group_name (
Optional[str]) – The name of the billing group.billing_group_properties (
Union[IResolvable,BillingGroupPropertiesProperty,Dict[str,Any],None]) – The properties of the billing group.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Metadata which can be used to manage the billing group.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-billinggroup.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_iot import mixins as iot_mixins cfn_billing_group_mixin_props = iot_mixins.CfnBillingGroupMixinProps( billing_group_name="billingGroupName", billing_group_properties=iot_mixins.CfnBillingGroupPropsMixin.BillingGroupPropertiesProperty( billing_group_description="billingGroupDescription" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- billing_group_name
The name of the billing group.
- billing_group_properties
The properties of the billing group.
- tags
Metadata which can be used to manage the billing group.