Values_0.JobExecutionSummarySourceThe job execution summary.
type nonrec t = {status : JobExecutionStatus.t option;The status of the job execution.
*)queuedAt : DateType.t option;The time, in seconds since the epoch, when the job execution was queued.
*)startedAt : DateType.t option;The time, in seconds since the epoch, when the job execution started.
*)lastUpdatedAt : DateType.t option;The time, in seconds since the epoch, when the job execution was last updated.
*)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.
*)retryAttempt : RetryAttempt.t option;The number that indicates how many retry attempts have been completed for this job on this device.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of RetryAttempt.t
| `Long of ExecutionNumber.t
| `Timestamp of DateType.t ])
list ]