interface LoRaWANProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTWireless.CfnMulticastGroupPropsMixin.LoRaWANProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotwireless#CfnMulticastGroupPropsMixin_LoRaWANProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotwireless.CfnMulticastGroupPropsMixin.LoRaWANProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotwireless.CfnMulticastGroupPropsMixin.LoRaWANProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotwireless » 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 { aws_iotwireless as iotwireless } from '@aws-cdk/cfn-property-mixins';
const loRaWANProperty: iotwireless.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