CfnMulticastGroupMixinProps

class aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnMulticastGroupMixinProps(*, associate_wireless_device=None, description=None, disassociate_wireless_device=None, lo_ra_wan=None, name=None, tags=None)

Bases: object

Properties for CfnMulticastGroupPropsMixin.

Parameters:
  • associate_wireless_device (Optional[str]) – The ID of the wireless device to associate with a multicast group.

  • description (Optional[str]) – The description of the multicast group.

  • disassociate_wireless_device (Optional[str]) – The ID of the wireless device to disassociate from a multicast group.

  • lo_ra_wan (Union[IResolvable, LoRaWANProperty, Dict[str, Any], None]) – The LoRaWAN information that is to be used with the multicast group.

  • name (Optional[str]) – The name of the multicast group.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags are an array of key-value pairs to attach to the specified resource. Tags can have a minimum of 0 and a maximum of 50 items.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-multicastgroup.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_iotwireless import mixins as iotwireless_mixins

cfn_multicast_group_mixin_props = iotwireless_mixins.CfnMulticastGroupMixinProps(
    associate_wireless_device="associateWirelessDevice",
    description="description",
    disassociate_wireless_device="disassociateWirelessDevice",
    lo_ra_wan=iotwireless_mixins.CfnMulticastGroupPropsMixin.LoRaWANProperty(
        dl_class="dlClass",
        number_of_devices_in_group=123,
        number_of_devices_requested=123,
        rf_region="rfRegion"
    ),
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

associate_wireless_device

The ID of the wireless device to associate with a multicast group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-multicastgroup.html#cfn-iotwireless-multicastgroup-associatewirelessdevice

description

The description of the multicast group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-multicastgroup.html#cfn-iotwireless-multicastgroup-description

disassociate_wireless_device

The ID of the wireless device to disassociate from a multicast group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-multicastgroup.html#cfn-iotwireless-multicastgroup-disassociatewirelessdevice

lo_ra_wan

The LoRaWAN information that is to be used with the multicast group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-multicastgroup.html#cfn-iotwireless-multicastgroup-lorawan

name

The name of the multicast group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-multicastgroup.html#cfn-iotwireless-multicastgroup-name

tags

The tags are an array of key-value pairs to attach to the specified resource.

Tags can have a minimum of 0 and a maximum of 50 items.

See:

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