Module Values.CreateFuotaTaskRequestSource

Creates a FUOTA task.

Sourcetype nonrec t = {
  1. name : FuotaTaskName.t option;
  2. description : Description.t option;
  3. clientRequestToken : ClientRequestToken.t option;
  4. loRaWAN : LoRaWANFuotaTask.t option;
  5. firmwareUpdateImage : FirmwareUpdateImage.t;
  6. firmwareUpdateRole : FirmwareUpdateRole.t;
  7. tags : TagList.t option;
  8. redundancyPercent : RedundancyPercent.t option;
  9. fragmentSizeBytes : FragmentSizeBytes.t option;
  10. fragmentIntervalMS : FragmentIntervalMS.t option;
  11. descriptor : FileDescriptor.t option;
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?clientRequestToken:??? -> ?loRaWAN:??? -> ?tags:??? -> ?redundancyPercent:??? -> ?fragmentSizeBytes:??? -> ?fragmentIntervalMS:??? -> ?descriptor:??? -> firmwareUpdateImage:FirmwareUpdateImage.t -> firmwareUpdateRole:FirmwareUpdateRole.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of RedundancyPercent.t | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of FuotaTaskName.t | `Structure of (string * [> `Enum of string ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t