Values.RecipeStepSourceRepresents a single step from a DataBrew recipe to be performed.
type nonrec t = {action : RecipeAction.t;The particular action to be performed in the recipe step.
*)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.
*)}val 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 ]