Class: Aws::GlueDataBrew::Types::UpdateRecipeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::UpdateRecipeRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A description of the recipe.
-
#name ⇒ String
The name of the recipe to be updated.
-
#steps ⇒ Array<Types::RecipeStep>
One or more steps to be performed by the recipe.
Instance Attribute Details
#description ⇒ String
A description of the recipe.
4053 4054 4055 4056 4057 4058 4059 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 4053 class UpdateRecipeRequest < Struct.new( :description, :name, :steps) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the recipe to be updated.
4053 4054 4055 4056 4057 4058 4059 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 4053 class UpdateRecipeRequest < Struct.new( :description, :name, :steps) SENSITIVE = [] include Aws::Structure end |
#steps ⇒ Array<Types::RecipeStep>
One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.
4053 4054 4055 4056 4057 4058 4059 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 4053 class UpdateRecipeRequest < Struct.new( :description, :name, :steps) SENSITIVE = [] include Aws::Structure end |