Module Values_0.OTAUpdateSummarySource

An OTA update summary.

Sourcetype nonrec t = {
  1. otaUpdateId : OTAUpdateId.t option;
    (*

    The OTA update ID.

    *)
  2. otaUpdateArn : OTAUpdateArn.t option;
    (*

    The OTA update ARN.

    *)
  3. creationDate : DateType.t option;
    (*

    The date when the OTA update was created.

    *)
}
Sourceval make : ?otaUpdateId:??? -> ?otaUpdateArn:??? -> ?creationDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of OTAUpdateId.t | `Timestamp of DateType.t ]) 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