Values.WorkflowStepMetadataSourceRuntime details and status for the workflow step.
type nonrec t = {stepExecutionId : WorkflowStepExecutionId.t option;A unique identifier for the workflow step, assigned at runtime.
*)name : WorkflowStepName.t option;The name of the workflow step.
*)description : WorkflowStepDescription.t option;Description of the workflow step.
*)action : WorkflowStepAction.t option;The step action name.
*)status : WorkflowStepExecutionStatus.t option;Runtime status for the workflow step.
*)rollbackStatus : WorkflowStepExecutionRollbackStatus.t option;Reports on the rollback status of the step, if applicable.
*)message : WorkflowStepMessage.t option;Detailed output message that the workflow step provides at runtime.
*)inputs : WorkflowStepInputs.t option;Input parameters that Image Builder provides for the workflow step.
*)outputs : WorkflowStepOutputs.t option;The file names that the workflow step created as output for this runtime instance of the workflow.
*)startTime : DateTime.t option;The timestamp when the workflow step started.
*)endTime : DateTime.t option;The timestamp when the workflow step finished.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of WorkflowStepExecutionId.t ])
list ]