Class: Aws::GlueDataBrew::Types::RecipeStep
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::RecipeStep
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
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.
3175 3176 3177 3178 3179 3180 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3175 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.
<note markdown=“1”> All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.
</note>
3175 3176 3177 3178 3179 3180 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3175 class RecipeStep < Struct.new( :action, :condition_expressions) SENSITIVE = [] include Aws::Structure end |