Values.WorkflowExecutionMetadataSourceMetadata that includes details and status from this runtime instance of the workflow.
type nonrec t = {workflowBuildVersionArn : WorkflowBuildVersionArn.t option;The Amazon Resource Name (ARN) of the workflow resource build version that ran.
*)workflowExecutionId : WorkflowExecutionId.t option;Unique identifier that Image Builder assigns to keep track of runtime resources each time it runs a workflow.
*)type_ : WorkflowType.t option;Indicates what type of workflow that Image Builder ran for this runtime instance of the workflow.
*)status : WorkflowExecutionStatus.t option;The current runtime status for this workflow.
*)message : WorkflowExecutionMessage.t option;The runtime output message from the workflow, if applicable.
*)totalStepCount : WorkflowStepCount.t option;The total number of steps in the workflow. This should equal the sum of the step counts for steps that succeeded, were skipped, and failed.
*)totalStepsSucceeded : WorkflowStepCount.t option;A runtime count for the number of steps in the workflow that ran successfully.
*)totalStepsFailed : WorkflowStepCount.t option;A runtime count for the number of steps in the workflow that failed.
*)totalStepsSkipped : WorkflowStepCount.t option;A runtime count for the number of steps in the workflow that were skipped.
*)startTime : DateTime.t option;The timestamp when the runtime instance of this workflow started.
*)endTime : DateTime.t option;The timestamp when this runtime instance of the workflow finished.
*)parallelGroup : ParallelGroup.t option;The name of the test group that included the test workflow resource at runtime.
*)retried : NullableBoolean.t option;Indicates retry status for this runtime instance of the workflow.
*)}val make :
?workflowBuildVersionArn:??? ->
?workflowExecutionId:??? ->
?type_:??? ->
?status:??? ->
?message:??? ->
?totalStepCount:??? ->
?totalStepsSucceeded:??? ->
?totalStepsFailed:??? ->
?totalStepsSkipped:??? ->
?startTime:??? ->
?endTime:??? ->
?parallelGroup:??? ->
?retried:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of NullableBoolean.t
| `Enum of string
| `Integer of WorkflowStepCount.t
| `String of WorkflowBuildVersionArn.t ])
list ]