Module Values.CreateRecipeRequestSource

Creates a new DataBrew recipe.

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

    A description for the recipe.

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

    A unique name for the recipe. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.

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

    An array containing the steps to be performed by the recipe. Each recipe step consists of one recipe action and (optionally) an array of condition expressions.

    *)
  4. tags : TagMap.t option;
    (*

    Metadata tags to apply to this recipe.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> name:RecipeName.t -> steps:RecipeStepList.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 | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) 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