Interface CfnMulticastGroupProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMulticastGroupProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:57.982Z") @Stability(Stable) public interface CfnMulticastGroupProps extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iotwireless.*;
 CfnMulticastGroupProps cfnMulticastGroupProps = CfnMulticastGroupProps.builder()
         .loRaWan(LoRaWANProperty.builder()
                 .dlClass("dlClass")
                 .rfRegion("rfRegion")
                 // the properties below are optional
                 .numberOfDevicesInGroup(123)
                 .numberOfDevicesRequested(123)
                 .build())
         // the properties below are optional
         .associateWirelessDevice("associateWirelessDevice")
         .description("description")
         .disassociateWirelessDevice("disassociateWirelessDevice")
         .name("name")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getLoRaWan

      @Stability(Stable) @NotNull Object getLoRaWan()
      The LoRaWAN information that is to be used with the multicast group.
    • getAssociateWirelessDevice

      @Stability(Stable) @Nullable default String getAssociateWirelessDevice()
      The ID of the wireless device to associate with a multicast group.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of the multicast group.
    • getDisassociateWirelessDevice

      @Stability(Stable) @Nullable default String getDisassociateWirelessDevice()
      The ID of the wireless device to disassociate from a multicast group.
    • getName

      @Stability(Stable) @Nullable default String getName()
      The name of the multicast group.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> 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.

    • builder

      @Stability(Stable) static CfnMulticastGroupProps.Builder builder()
      Returns:
      a CfnMulticastGroupProps.Builder of CfnMulticastGroupProps