Module Values.ExecutionStepResultSource

Specifies the following details for the step: error (if any), outputs (if any), and the step type.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. 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.

    *)
  3. error : ExecutionError.t option;
    (*

    Specifies the details for an error, if it occurred during execution of the specified workflow step.

    *)
}
Sourceval make : ?stepType:??? -> ?outputs:??? -> ?error:??? -> unit -> t
Sourceval 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 ]
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