Module Values.WorkflowStepMetadataSource

Runtime details and status for the workflow step.

Sourcetype nonrec t = {
  1. stepExecutionId : WorkflowStepExecutionId.t option;
    (*

    A unique identifier for the workflow step, assigned at runtime.

    *)
  2. name : WorkflowStepName.t option;
    (*

    The name of the workflow step.

    *)
  3. description : WorkflowStepDescription.t option;
    (*

    Description of the workflow step.

    *)
  4. action : WorkflowStepAction.t option;
    (*

    The step action name.

    *)
  5. status : WorkflowStepExecutionStatus.t option;
    (*

    Runtime status for the workflow step.

    *)
  6. rollbackStatus : WorkflowStepExecutionRollbackStatus.t option;
    (*

    Reports on the rollback status of the step, if applicable.

    *)
  7. message : WorkflowStepMessage.t option;
    (*

    Detailed output message that the workflow step provides at runtime.

    *)
  8. inputs : WorkflowStepInputs.t option;
    (*

    Input parameters that Image Builder provides for the workflow step.

    *)
  9. outputs : WorkflowStepOutputs.t option;
    (*

    The file names that the workflow step created as output for this runtime instance of the workflow.

    *)
  10. startTime : DateTime.t option;
    (*

    The timestamp when the workflow step started.

    *)
  11. endTime : DateTime.t option;
    (*

    The timestamp when the workflow step finished.

    *)
}
Sourceval make : ?stepExecutionId:??? -> ?name:??? -> ?description:??? -> ?action:??? -> ?status:??? -> ?rollbackStatus:??? -> ?message:??? -> ?inputs:??? -> ?outputs:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of WorkflowStepExecutionId.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