CfnBillingGroupProps

class aws_cdk.aws_iot.CfnBillingGroupProps(*, billing_group_name=None, billing_group_properties=None, tags=None)

Bases: object

Properties for defining a CfnBillingGroup.

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 import aws_iot as iot

cfn_billing_group_props = iot.CfnBillingGroupProps(
    billing_group_name="billingGroupName",
    billing_group_properties=iot.CfnBillingGroup.BillingGroupPropertiesProperty(
        billing_group_description="billingGroupDescription"
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

billing_group_name

The name of the billing group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-billinggroup.html#cfn-iot-billinggroup-billinggroupname

billing_group_properties

The properties of the billing group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-billinggroup.html#cfn-iot-billinggroup-billinggroupproperties

tags

Metadata which can be used to manage the billing group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-billinggroup.html#cfn-iot-billinggroup-tags