Module Values.ExecutionResultsSource

Specifies the steps in the workflow, as well as the steps to execute in case of any errors during workflow execution.

Sourcetype nonrec t = {
  1. steps : ExecutionStepResults.t option;
    (*

    Specifies the details for the steps that are in the specified workflow.

    *)
  2. onExceptionSteps : ExecutionStepResults.t option;
    (*

    Specifies the steps (actions) to take if errors are encountered during execution of the workflow.

    *)
}
Sourceval make : ?steps:??? -> ?onExceptionSteps:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of StepResultOutputsJson.t | `Structure of (string * [> `Enum of string | `String of ExecutionErrorMessage.t ]) list ]) list ] list ]) 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