Show / Hide Table of Contents

Class CfnMulticastGroupProps

Properties for defining a CfnMulticastGroup.

Inheritance
System.Object
CfnMulticastGroupProps
Implements
ICfnMulticastGroupProps
Namespace: Amazon.CDK.AWS.IoTWireless
Assembly: Amazon.CDK.AWS.IoTWireless.dll
Syntax (csharp)
public class CfnMulticastGroupProps : Object, ICfnMulticastGroupProps
Syntax (vb)
Public Class CfnMulticastGroupProps
    Inherits Object
    Implements ICfnMulticastGroupProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-multicastgroup.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTWireless;

var cfnMulticastGroupProps = new CfnMulticastGroupProps {
    LoRaWan = new LoRaWANProperty {
        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 = new [] { new CfnTag {
        Key = "key",
        Value = "value"
    } }
};

Synopsis

Constructors

CfnMulticastGroupProps()

Properties

AssociateWirelessDevice

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

Description

The description of the multicast group.

DisassociateWirelessDevice

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

LoRaWan

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

Name

The name of the multicast group.

Tags

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

Constructors

CfnMulticastGroupProps()

public CfnMulticastGroupProps()

Properties

AssociateWirelessDevice

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

public string AssociateWirelessDevice { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-multicastgroup.html#cfn-iotwireless-multicastgroup-associatewirelessdevice

Description

The description of the multicast group.

public string Description { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-multicastgroup.html#cfn-iotwireless-multicastgroup-description

DisassociateWirelessDevice

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

public string DisassociateWirelessDevice { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-multicastgroup.html#cfn-iotwireless-multicastgroup-disassociatewirelessdevice

LoRaWan

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

public object LoRaWan { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-multicastgroup.html#cfn-iotwireless-multicastgroup-lorawan

Name

The name of the multicast group.

public string Name { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-multicastgroup.html#cfn-iotwireless-multicastgroup-name

Tags

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

public ICfnTag[] Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-multicastgroup.html#cfn-iotwireless-multicastgroup-tags

Implements

ICfnMulticastGroupProps
Back to top Generated by DocFX