Module Values.UpdateRecipeRequestSource

Modifies the definition of the LATEST_WORKING version of a DataBrew recipe.

Sourcetype nonrec t = {
  1. description : RecipeDescription.t option;
    (*

    A description of the recipe.

    *)
  2. name : RecipeName.t;
    (*

    The name of the recipe to be updated.

    *)
  3. steps : RecipeStepList.t option;
    (*

    One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?steps:??? -> name:RecipeName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `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 ] list | `String of RecipeDescription.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