class Aws::GlueDataBrew::Types::CreateRecipeRequest

@note When making an API call, you may pass CreateRecipeRequest

data as a hash:

    {
      description: "RecipeDescription",
      name: "RecipeName", # required
      steps: [ # required
        {
          action: { # required
            operation: "Operation", # required
            parameters: {
              "ParameterName" => "ParameterValue",
            },
          },
          condition_expressions: [
            {
              condition: "Condition", # required
              value: "ConditionValue",
              target_column: "TargetColumn", # required
            },
          ],
        },
      ],
      tags: {
        "TagKey" => "TagValue",
      },
    }

@!attribute [rw] description

A description for the recipe.
@return [String]

@!attribute [rw] name

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

@!attribute [rw] steps

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.
@return [Array<Types::RecipeStep>]

@!attribute [rw] tags

Metadata tags to apply to this recipe.
@return [Hash<String,String>]

@see docs.aws.amazon.com/goto/WebAPI/databrew-2017-07-25/CreateRecipeRequest AWS API Documentation

Constants

SENSITIVE