Class: Aws::GlueDataBrew::Types::RecipeStep
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::RecipeStep
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass RecipeStep data as a hash:
{
action: { # required
operation: "Operation", # required
parameters: {
"ParameterName" => "ParameterValue",
},
},
condition_expressions: [
{
condition: "Condition", # required
value: "ConditionValue",
target_column: "TargetColumn", # required
},
],
}
Represents a single step from a DataBrew recipe to be performed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action ⇒ Types::RecipeAction
The particular action to be performed in the recipe step.
-
#condition_expressions ⇒ Array<Types::ConditionExpression>
One or more conditions that must be met for the recipe step to succeed.
Instance Attribute Details
#action ⇒ Types::RecipeAction
The particular action to be performed in the recipe step.
4139 4140 4141 4142 4143 4144 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4139 class RecipeStep < Struct.new( :action, :condition_expressions) SENSITIVE = [] include Aws::Structure end |
#condition_expressions ⇒ Array<Types::ConditionExpression>
One or more conditions that must be met for the recipe step to succeed.
4139 4140 4141 4142 4143 4144 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4139 class RecipeStep < Struct.new( :action, :condition_expressions) SENSITIVE = [] include Aws::Structure end |