Values.ExecutionStepResultSourceSpecifies the following details for the step: error (if any), outputs (if any), and the step type.
type nonrec t = {stepType : WorkflowStepType.t option;One of the available step types. COPY - Copy the file to another location. CUSTOM - Perform a custom step with an Lambda function target. DECRYPT - Decrypt a file that was encrypted before it was uploaded. DELETE - Delete the file. TAG - Add a tag to the file.
*)outputs : StepResultOutputsJson.t option;The values for the key/value pair applied as a tag to the file. Only applicable if the step type is TAG.
*)error : ExecutionError.t option;Specifies the details for an error, if it occurred during execution of the specified workflow step.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of StepResultOutputsJson.t
| `Structure of
(string * [> `Enum of string | `String of ExecutionErrorMessage.t ])
list ])
list ]