Class: Aws::GlueDataBrew::Types::CreateRecipeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::CreateRecipeRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A description for the recipe.
-
#name ⇒ String
A unique name for the recipe.
-
#steps ⇒ Array<Types::RecipeStep>
An array containing the steps to be performed by the recipe.
-
#tags ⇒ Hash<String,String>
Metadata tags to apply to this recipe.
Instance Attribute Details
#description ⇒ String
A description for the recipe.
523 524 525 526 527 528 529 530 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 523 class CreateRecipeRequest < Struct.new( :description, :name, :steps, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A unique name for the recipe. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
523 524 525 526 527 528 529 530 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 523 class CreateRecipeRequest < Struct.new( :description, :name, :steps, :tags) SENSITIVE = [] include Aws::Structure end |
#steps ⇒ Array<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.
523 524 525 526 527 528 529 530 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 523 class CreateRecipeRequest < Struct.new( :description, :name, :steps, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Metadata tags to apply to this recipe.
523 524 525 526 527 528 529 530 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 523 class CreateRecipeRequest < Struct.new( :description, :name, :steps, :tags) SENSITIVE = [] include Aws::Structure end |