Module Values_0.JobExecutionSummarySource

The job execution summary.

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

    The status of the job execution.

    *)
  2. queuedAt : DateType.t option;
    (*

    The time, in seconds since the epoch, when the job execution was queued.

    *)
  3. startedAt : DateType.t option;
    (*

    The time, in seconds since the epoch, when the job execution started.

    *)
  4. lastUpdatedAt : DateType.t option;
    (*

    The time, in seconds since the epoch, when the job execution was last updated.

    *)
  5. executionNumber : ExecutionNumber.t option;
    (*

    A string (consisting of the digits "0" through "9") which identifies this particular job execution on this particular device. It can be used later in commands which return or update job execution information.

    *)
  6. retryAttempt : RetryAttempt.t option;
    (*

    The number that indicates how many retry attempts have been completed for this job on this device.

    *)
}
Sourceval make : ?status:??? -> ?queuedAt:??? -> ?startedAt:??? -> ?lastUpdatedAt:??? -> ?executionNumber:??? -> ?retryAttempt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of RetryAttempt.t | `Long of ExecutionNumber.t | `Timestamp of DateType.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