aws-cdk-lib.aws_iotwireless.CfnMulticastGroup.LoRaWANProperty

interface LoRaWANProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTWireless.CfnMulticastGroup.LoRaWANProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotwireless#CfnMulticastGroup_LoRaWANProperty
Javasoftware.amazon.awscdk.services.iotwireless.CfnMulticastGroup.LoRaWANProperty
Pythonaws_cdk.aws_iotwireless.CfnMulticastGroup.LoRaWANProperty
TypeScript aws-cdk-lib » aws_iotwireless » CfnMulticastGroup » 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-lib';
const loRaWANProperty: iotwireless.CfnMulticastGroup.LoRaWANProperty = {
  dlClass: 'dlClass',
  rfRegion: 'rfRegion',

  // the properties below are optional
  numberOfDevicesInGroup: 123,
  numberOfDevicesRequested: 123,
};

Properties

NameTypeDescription
dlClassstringDlClass for LoRaWAN.
rfRegionstringThe frequency band (RFRegion) value.
numberOfDevicesInGroup?numberNumber of devices that are associated to the multicast group.
numberOfDevicesRequested?numberNumber of devices that are requested to be associated with the multicast group.

dlClass

Type: string

DlClass for LoRaWAN.

Valid values are ClassB and ClassC.


rfRegion

Type: string

The frequency band (RFRegion) value.


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.