CfnMulticastGroupProps

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

Bases: object

Properties for defining a CfnMulticastGroup.

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

  • 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.

  • 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 import aws_iotwireless as iotwireless

cfn_multicast_group_props = iotwireless.CfnMulticastGroupProps(
    lo_ra_wan=iotwireless.CfnMulticastGroup.LoRaWANProperty(
        dl_class="dlClass",
        rf_region="rfRegion",

        # the properties below are optional
        number_of_devices_in_group=123,
        number_of_devices_requested=123
    ),

    # the properties below are optional
    associate_wireless_device="associateWirelessDevice",
    description="description",
    disassociate_wireless_device="disassociateWirelessDevice",
    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