CfnMulticastGroupPropsMixin

class aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnMulticastGroupPropsMixin(props, *, strategy=None)

Bases: Mixin

A multicast group.

See:

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

CloudformationResource:

AWS::IoTWireless::MulticastGroup

Mixin:

true

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 import mixins
from aws_cdk.mixins_preview.aws_iotwireless import mixins as iotwireless_mixins

cfn_multicast_group_props_mixin = iotwireless_mixins.CfnMulticastGroupPropsMixin(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"
    )]
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

Create a mixin to apply properties to AWS::IoTWireless::MulticastGroup.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['associateWirelessDevice', 'description', 'disassociateWirelessDevice', 'loRaWan', 'name', 'tags']

Static Methods

classmethod is_mixin(x)

(experimental) Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental

LoRaWANProperty

class CfnMulticastGroupPropsMixin.LoRaWANProperty(*, dl_class=None, number_of_devices_in_group=None, number_of_devices_requested=None, rf_region=None)

Bases: object

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

Parameters:
  • dl_class (Optional[str]) – DlClass for LoRaWAN. Valid values are ClassB and ClassC.

  • number_of_devices_in_group (Union[int, float, None]) – Number of devices that are associated to the multicast group.

  • number_of_devices_requested (Union[int, float, None]) – Number of devices that are requested to be associated with the multicast group.

  • rf_region (Optional[str]) – The frequency band (RFRegion) value.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-multicastgroup-lorawan.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

lo_ra_wANProperty = iotwireless_mixins.CfnMulticastGroupPropsMixin.LoRaWANProperty(
    dl_class="dlClass",
    number_of_devices_in_group=123,
    number_of_devices_requested=123,
    rf_region="rfRegion"
)

Attributes

dl_class

DlClass for LoRaWAN.

Valid values are ClassB and ClassC.

See:

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

number_of_devices_in_group

Number of devices that are associated to the multicast group.

See:

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

number_of_devices_requested

Number of devices that are requested to be associated with the multicast group.

See:

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

rf_region

The frequency band (RFRegion) value.

See:

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