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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFuotaTaskProps
static final class
An implementation forCfnFuotaTaskProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnFuotaTaskProps.Builder
builder()
default String
The ID of the multicast group to associate with a FUOTA task.default String
The ID of the wireless device to associate with a multicast group.default String
The description of the new resource.default String
The ID of the multicast group to disassociate from a FUOTA task.default String
The ID of the wireless device to disassociate from a FUOTA task.The S3 URI points to a firmware update image that is to be used with a FUOTA task.The firmware update role that is to be used with a FUOTA task.The LoRaWAN information used with a FUOTA task.default String
getName()
The name of a FUOTA task.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
-
getFirmwareUpdateImage
The S3 URI points to a firmware update image that is to be used with a FUOTA task. -
getFirmwareUpdateRole
The firmware update role that is to be used with a FUOTA task. -
getLoRaWan
The LoRaWAN information used with a FUOTA task. -
getAssociateMulticastGroup
The ID of the multicast group to associate with a FUOTA task. -
getAssociateWirelessDevice
The ID of the wireless device to associate with a multicast group. -
getDescription
The description of the new resource. -
getDisassociateMulticastGroup
The ID of the multicast group to disassociate from a FUOTA task. -
getDisassociateWirelessDevice
The ID of the wireless device to disassociate from a FUOTA task. -
getName
The name of a FUOTA task. -
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
- Returns:
- a
CfnFuotaTaskProps.Builder
ofCfnFuotaTaskProps
-