/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Create and manage FUOTA tasks. */ export interface AwsIotwirelessFuotatask { /** * Name of FUOTA task */ Name?: string; /** * FUOTA task description */ Description?: string; LoRaWAN: LoRaWAN; /** * FUOTA task firmware update image binary S3 link */ FirmwareUpdateImage: string; /** * FUOTA task firmware IAM role for reading S3 */ FirmwareUpdateRole: string; /** * FUOTA task arn. Returned after successful create. */ Arn?: string; /** * FUOTA task id. Returned after successful create. */ Id?: string; /** * A list of key-value pairs that contain metadata for the FUOTA task. * * @maxItems 200 */ Tags?: Tag[]; /** * FUOTA task status. Returned after successful read. */ FuotaTaskStatus?: string; /** * Wireless device to associate. Only for update request. */ AssociateWirelessDevice?: string; /** * Wireless device to disassociate. Only for update request. */ DisassociateWirelessDevice?: string; /** * Multicast group to associate. Only for update request. */ AssociateMulticastGroup?: string; /** * Multicast group to disassociate. Only for update request. */ DisassociateMulticastGroup?: string; } /** * FUOTA task LoRaWAN */ export interface LoRaWAN { /** * FUOTA task LoRaWAN start time */ StartTime?: string; /** * FUOTA task LoRaWAN RF region */ RfRegion: string; } export interface Tag { Key?: string; Value?: string; }