Module Values.JobRunSummarySource

The job run summary.

Sourcetype nonrec t = {
  1. domainId : DomainId.t option;
    (*

    The domain ID of the job run.

    *)
  2. jobId : String_.t option;
    (*

    The job ID of a job run.

    *)
  3. jobType : JobType.t option;
    (*

    The job type of a job run.

    *)
  4. runId : String_.t option;
    (*

    The run ID of a job run.

    *)
  5. runMode : JobRunMode.t option;
    (*

    The run mode of a job run.

    *)
  6. status : JobRunStatus.t option;
    (*

    The status of a job run.

    *)
  7. error : JobRunError.t option;
    (*

    The error of a job run.

    *)
  8. createdBy : String_.t option;
    (*

    The user who created the job run.

    *)
  9. createdAt : Timestamp.t option;
    (*

    The timestamp at which job run was created.

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

    The start time of a job run.

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

    The end time of a job run.

    *)
}
Sourceval make : ?domainId:??? -> ?jobId:??? -> ?jobType:??? -> ?runId:??? -> ?runMode:??? -> ?status:??? -> ?error:??? -> ?createdBy:??? -> ?createdAt:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DomainId.t | `Structure of (string * [> `String of String_.t ]) list | `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