Module Values.DataProcessingDetailsSource

For a Distillation job, the status details for the data processing sub-task of the job.

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

    The status of the data processing sub-task of the job.

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

    The start time of the data processing sub-task of the job.

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

    The latest update to the data processing sub-task of the job.

    *)
}
Sourceval make : ?status:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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