Module Values.LastUploaderStatusSource

The latest status of a stream’s edge to cloud uploader job.

Sourcetype nonrec t = {
  1. jobStatusDetails : JobStatusDetails.t option;
    (*

    A description of an uploader job’s latest status.

    *)
  2. lastCollectedTime : Timestamp.t option;
    (*

    The timestamp at which the uploader job was last executed and media collected to the cloud.

    *)
  3. lastUpdatedTime : Timestamp.t option;
    (*

    The timestamp at which the uploader status was last updated.

    *)
  4. uploaderStatus : UploaderStatus.t option;
    (*

    The status of the latest uploader job.

    *)
}
Sourceval make : ?jobStatusDetails:??? -> ?lastCollectedTime:??? -> ?lastUpdatedTime:??? -> ?uploaderStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of JobStatusDetails.t | `Timestamp of Timestamp.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