Interface CfnFuotaTaskProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:57.980Z") @Stability(Stable) public interface CfnFuotaTaskProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnFuotaTask.

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.*;
 CfnFuotaTaskProps cfnFuotaTaskProps = CfnFuotaTaskProps.builder()
         .firmwareUpdateImage("firmwareUpdateImage")
         .firmwareUpdateRole("firmwareUpdateRole")
         .loRaWan(LoRaWANProperty.builder()
                 .rfRegion("rfRegion")
                 // the properties below are optional
                 .startTime("startTime")
                 .build())
         // the properties below are optional
         .associateMulticastGroup("associateMulticastGroup")
         .associateWirelessDevice("associateWirelessDevice")
         .description("description")
         .disassociateMulticastGroup("disassociateMulticastGroup")
         .disassociateWirelessDevice("disassociateWirelessDevice")
         .name("name")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getFirmwareUpdateImage

      @Stability(Stable) @NotNull String getFirmwareUpdateImage()
      The S3 URI points to a firmware update image that is to be used with a FUOTA task.
    • getFirmwareUpdateRole

      @Stability(Stable) @NotNull String getFirmwareUpdateRole()
      The firmware update role that is to be used with a FUOTA task.
    • getLoRaWan

      @Stability(Stable) @NotNull Object getLoRaWan()
      The LoRaWAN information used with a FUOTA task.
    • getAssociateMulticastGroup

      @Stability(Stable) @Nullable default String getAssociateMulticastGroup()
      The ID of the multicast group to associate with a FUOTA task.
    • 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 new resource.
    • getDisassociateMulticastGroup

      @Stability(Stable) @Nullable default String getDisassociateMulticastGroup()
      The ID of the multicast group to disassociate from a FUOTA task.
    • getDisassociateWirelessDevice

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

      @Stability(Stable) @Nullable default String getName()
      The name of a FUOTA task.
    • 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 CfnFuotaTaskProps.Builder builder()
      Returns:
      a CfnFuotaTaskProps.Builder of CfnFuotaTaskProps