Module Values.RecipeStepSource

Represents a single step from a DataBrew recipe to be performed.

Sourcetype nonrec t = {
  1. action : RecipeAction.t;
    (*

    The particular action to be performed in the recipe step.

    *)
  2. conditionExpressions : ConditionExpressionList.t option;
    (*

    One or more conditions that must be met for the recipe step to succeed. All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.

    *)
}
Sourceval context_ : string
Sourceval make : ?conditionExpressions:??? -> action:RecipeAction.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of Condition.t ]) list ] list | `Structure of (string * [> `Map of ([> `String of ParameterName.t ] * [> `String of ParameterValue.t ]) list | `String of Operation.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