Values.StepSummarySourceThe details for a step.
type nonrec t = {stepId : StepId.t option;The step ID.
*)name : StepName.t option;The name of the step.
*)lifecycleStatus : StepLifecycleStatus.t option;The life cycle status.
*)lifecycleStatusMessage : String_.t option;A message that describes the lifecycle of the step.
*)taskRunStatus : TaskRunStatus.t option;The task run status for the job. PENDING–pending and waiting for resources. READY–ready to process. ASSIGNED–assigned and will run next on a worker. SCHEDULED–scheduled to run on a worker. INTERRUPTING–being interrupted. RUNNING–running on a worker. SUSPENDED–the task is suspended. CANCELED–the task has been canceled. FAILED–the task has failed. SUCCEEDED–the task has succeeded.
*)taskRunStatusCounts : TaskRunStatusCounts.t option;The number of tasks running on the job.
*)taskFailureRetryCount : TaskFailureRetryCount.t option;The total number of times tasks from the step failed and were retried.
*)targetTaskRunStatus : StepTargetTaskRunStatus.t option;The task status to update the job's tasks to.
*)createdAt : CreatedAt.t option;The date and time the resource was created.
*)createdBy : CreatedBy.t option;The user or system that created this resource.
*)updatedAt : UpdatedAt.t option;The date and time the resource was updated.
*)updatedBy : UpdatedBy.t option;The user or system that updated this resource.
*)startedAt : StartedAt.t option;The date and time the resource started running.
*)endedAt : EndedAt.t option;The date and time the resource ended running.
*)dependencyCounts : DependencyCounts.t option;The number of dependencies for the step.
*)}val make :
?stepId:??? ->
?name:??? ->
?lifecycleStatus:??? ->
?lifecycleStatusMessage:??? ->
?taskRunStatus:??? ->
?taskRunStatusCounts:??? ->
?taskFailureRetryCount:??? ->
?targetTaskRunStatus:??? ->
?createdAt:??? ->
?createdBy:??? ->
?updatedAt:??? ->
?updatedBy:??? ->
?startedAt:??? ->
?endedAt:??? ->
?dependencyCounts:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of TaskFailureRetryCount.t
| `Map of ([> `Enum of string ] * [> `Integer of Integer.t ]) list
| `String of StepId.t
| `Structure of (string * [> `Integer of Integer.t ]) list
| `Timestamp of CreatedAt.t ])
list ]