Class: Aws::GlueDataBrew::Types::RecipeStep

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#actionTypes::RecipeAction

The particular action to be performed in the recipe step.

Returns:



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_expressionsArray<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>

Returns:



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