You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::GlueDataBrew::Types::CreateRecipeRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateRecipeRequest as input to an Aws::Client method, you can use a vanilla 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",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description for the recipe.

Returns:

  • (String)

    A description for the recipe.

#nameString

A unique name for the recipe.

Returns:

  • (String)

    A unique name for the recipe.

#stepsArray<Types::RecipeStep>

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.

Returns:

  • (Array<Types::RecipeStep>)

    An array containing the steps to be performed by the recipe.

#tagsHash<String,String>

Metadata tags to apply to this recipe.

Returns:

  • (Hash<String,String>)

    Metadata tags to apply to this recipe.