Module Values.JobSummarySource

An object containing the jobId, status, startTime, and endTime of a job.

Sourcetype nonrec t = {
  1. jobId : JobId.t option;
    (*

    The ID of the job.

    *)
  2. status : JobStatus.t option;
    (*

    The current status of the job.

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

    The time at which the job was started.

    *)
  4. endTime : Timestamp.t option;
    (*

    The time at which the job has finished.

    *)
}
Sourceval make : ?jobId:??? -> ?status:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of JobId.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