interface CfnMulticastGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTWireless.Mixins.CfnMulticastGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotwireless/mixins#CfnMulticastGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotwireless.mixins.CfnMulticastGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnMulticastGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotwireless » mixins » CfnMulticastGroupMixinProps |
Properties for CfnMulticastGroupPropsMixin.
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 cfnMulticastGroupMixinProps: iotwireless_mixins.CfnMulticastGroupMixinProps = {
associateWirelessDevice: 'associateWirelessDevice',
description: 'description',
disassociateWirelessDevice: 'disassociateWirelessDevice',
loRaWan: {
dlClass: 'dlClass',
numberOfDevicesInGroup: 123,
numberOfDevicesRequested: 123,
rfRegion: 'rfRegion',
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| associate | string | The ID of the wireless device to associate with a multicast group. |
| description? | string | The description of the multicast group. |
| disassociate | string | The ID of the wireless device to disassociate from a multicast group. |
| lo | IResolvable | Lo | The LoRaWAN information that is to be used with the multicast group. |
| name? | string | The name of the multicast group. |
| tags? | Cfn[] | The tags are an array of key-value pairs to attach to the specified resource. |
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.
loRaWan?
Type:
IResolvable | Lo
(optional)
The LoRaWAN information that is to be used with the multicast group.
name?
Type:
string
(optional)
The name of the multicast group.
tags?
Type:
Cfn[]
(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.

.NET
Go
Java
Python
TypeScript