Module Values.DeleteStepDetailsSource

The name of the step, used to identify the delete step.

Sourcetype nonrec t = {
  1. name : WorkflowStepName.t option;
    (*

    The name of the step, used as an identifier.

    *)
  2. sourceFileLocation : SourceFileLocation.t option;
    (*

    Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow. To use the previous file as the input, enter ${previous.file}. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value. To use the originally uploaded file location as input for this step, enter ${original.file}.

    *)
}
Sourceval make : ?name:??? -> ?sourceFileLocation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of WorkflowStepName.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