Interface CfnMulticastGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMulticastGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.515Z")
@Stability(Stable)
public interface CfnMulticastGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnMulticastGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iotwireless.*;
CfnMulticastGroupMixinProps cfnMulticastGroupMixinProps = CfnMulticastGroupMixinProps.builder()
.associateWirelessDevice("associateWirelessDevice")
.description("description")
.disassociateWirelessDevice("disassociateWirelessDevice")
.loRaWan(LoRaWANProperty.builder()
.dlClass("dlClass")
.numberOfDevicesInGroup(123)
.numberOfDevicesRequested(123)
.rfRegion("rfRegion")
.build())
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMulticastGroupMixinPropsstatic final classAn implementation forCfnMulticastGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ID of the wireless device to associate with a multicast group.default StringThe description of the multicast group.default StringThe ID of the wireless device to disassociate from a multicast group.default ObjectThe LoRaWAN information that is to be used with the multicast group.default StringgetName()The name of the multicast group.getTags()The tags are an array of key-value pairs to attach to the specified resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAssociateWirelessDevice
The ID of the wireless device to associate with a multicast group.- See Also:
-
getDescription
The description of the multicast group.- See Also:
-
getDisassociateWirelessDevice
The ID of the wireless device to disassociate from a multicast group.- See Also:
-
getLoRaWan
The LoRaWAN information that is to be used with the multicast group.Returns union: either
IResolvableorCfnMulticastGroupPropsMixin.LoRaWANProperty- See Also:
-
getName
The name of the multicast group.- See Also:
-
getTags
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.
- See Also:
-
builder
-