CfnMulticastGroupPropsMixin
- class aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnMulticastGroupPropsMixin(props, *, strategy=None)
Bases:
MixinA multicast group.
- See:
- 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:
props (
Union[CfnMulticastGroupMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- 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
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
LoRaWANProperty
- class CfnMulticastGroupPropsMixin.LoRaWANProperty(*, dl_class=None, number_of_devices_in_group=None, number_of_devices_requested=None, rf_region=None)
Bases:
objectThe 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:
- 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.
- number_of_devices_in_group
Number of devices that are associated to the multicast group.
- number_of_devices_requested
Number of devices that are requested to be associated with the multicast group.
- rf_region
The frequency band (RFRegion) value.