Module Values.StatusDetailsSource

For a Distillation job, the status details for sub-tasks of the job. Possible statuses for each sub-task include the following: NotStarted InProgress Completed Stopping Stopped Failed

Sourcetype nonrec t = {
  1. validationDetails : ValidationDetails.t option;
    (*

    The status details for the validation sub-task of the job.

    *)
  2. dataProcessingDetails : DataProcessingDetails.t option;
    (*

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

    *)
  3. trainingDetails : TrainingDetails.t option;
    (*

    The status details for the training sub-task of the job.

    *)
}
Sourceval make : ?validationDetails:??? -> ?dataProcessingDetails:??? -> ?trainingDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Timestamp of Timestamp.t ]) list ]) 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