Module Values.DeleteRecipeVersionRequestSource

Deletes a single version of a DataBrew recipe.

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

    The name of the recipe.

    *)
  2. recipeVersion : RecipeVersion.t;
    (*

    The version of the recipe to be deleted. You can specify a numeric versions (X.Y) or LATEST_WORKING. LATEST_PUBLISHED is not supported.

    *)
}
Sourceval context_ : string
Sourceval make : name:RecipeName.t -> recipeVersion:RecipeVersion.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RecipeName.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