aws-cdk-lib.aws_iotwireless.CfnMulticastGroupProps

interface CfnMulticastGroupProps

LanguageType name
.NETAmazon.CDK.AWS.IoTWireless.CfnMulticastGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotwireless#CfnMulticastGroupProps
Javasoftware.amazon.awscdk.services.iotwireless.CfnMulticastGroupProps
Pythonaws_cdk.aws_iotwireless.CfnMulticastGroupProps
TypeScript aws-cdk-lib » aws_iotwireless » CfnMulticastGroupProps

Properties for defining a CfnMulticastGroup.

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 cfnMulticastGroupProps: iotwireless.CfnMulticastGroupProps = {
  loRaWan: {
    dlClass: 'dlClass',
    rfRegion: 'rfRegion',

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

  // the properties below are optional
  associateWirelessDevice: 'associateWirelessDevice',
  description: 'description',
  disassociateWirelessDevice: 'disassociateWirelessDevice',
  name: 'name',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
loRaWanIResolvable | LoRaWANPropertyThe LoRaWAN information that is to be used with the multicast group.
associateWirelessDevice?stringThe ID of the wireless device to associate with a multicast group.
description?stringThe description of the multicast group.
disassociateWirelessDevice?stringThe ID of the wireless device to disassociate from a multicast group.
name?stringThe name of the multicast group.
tags?CfnTag[]The tags are an array of key-value pairs to attach to the specified resource.

loRaWan

Type: IResolvable | LoRaWANProperty

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


associateWirelessDevice?

Type: string (optional)

The ID of the wireless device to associate with a multicast group.


description?

Type: string (optional)

The description of the multicast group.


disassociateWirelessDevice?

Type: string (optional)

The ID of the wireless device to disassociate from a multicast group.


name?

Type: string (optional)

The name of the multicast group.


tags?

Type: CfnTag[] (optional)

The tags are an array of key-value pairs to attach to the specified resource.

Tags can have a minimum of 0 and a maximum of 50 items.