interface LoRaWANProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTWireless.Mixins.CfnMulticastGroupPropsMixin.LoRaWANProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotwireless/mixins#CfnMulticastGroupPropsMixin_LoRaWANProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotwireless.mixins.CfnMulticastGroupPropsMixin.LoRaWANProperty |
Python | aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnMulticastGroupPropsMixin.LoRaWANProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotwireless » mixins » CfnMulticastGroupPropsMixin » LoRaWANProperty |
The LoRaWAN information that is to be used with the multicast group.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotwireless_mixins } from '@aws-cdk/mixins-preview/aws-iotwireless';
const loRaWANProperty: iotwireless_mixins.CfnMulticastGroupPropsMixin.LoRaWANProperty = {
dlClass: 'dlClass',
numberOfDevicesInGroup: 123,
numberOfDevicesRequested: 123,
rfRegion: 'rfRegion',
};
Properties
| Name | Type | Description |
|---|---|---|
| dl | string | DlClass for LoRaWAN. |
| number | number | Number of devices that are associated to the multicast group. |
| number | number | Number of devices that are requested to be associated with the multicast group. |
| rf | string | The frequency band (RFRegion) value. |
dlClass?
Type:
string
(optional)
DlClass for LoRaWAN.
Valid values are ClassB and ClassC.
numberOfDevicesInGroup?
Type:
number
(optional)
Number of devices that are associated to the multicast group.
numberOfDevicesRequested?
Type:
number
(optional)
Number of devices that are requested to be associated with the multicast group.
rfRegion?
Type:
string
(optional)
The frequency band (RFRegion) value.

.NET
Go
Java
Python
TypeScript