Module Values.RecipeActionSource

Represents a transformation and associated parameters that are used to apply a change to a DataBrew dataset. For more information, see Recipe actions reference.

Sourcetype nonrec t = {
  1. operation : Operation.t;
    (*

    The name of a valid DataBrew transformation to be performed on the data.

    *)
  2. parameters : ParameterMap.t option;
    (*

    Contextual parameters for the transformation.

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