Class: Aws::GlueDataBrew::Types::RecipeAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::RecipeAction
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass RecipeAction data as a hash:
{
operation: "Operation", # required
parameters: {
"ParameterName" => "ParameterValue",
},
}
Represents a transformation and associated parameters that are used to apply a change to a DataBrew dataset. For more information, see Recipe actions reference.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#operation ⇒ String
The name of a valid DataBrew transformation to be performed on the data.
-
#parameters ⇒ Hash<String,String>
Contextual parameters for the transformation.
Instance Attribute Details
#operation ⇒ String
The name of a valid DataBrew transformation to be performed on the data.
4068 4069 4070 4071 4072 4073 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4068 class RecipeAction < Struct.new( :operation, :parameters) SENSITIVE = [] include Aws::Structure end |
#parameters ⇒ Hash<String,String>
Contextual parameters for the transformation.
4068 4069 4070 4071 4072 4073 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4068 class RecipeAction < Struct.new( :operation, :parameters) SENSITIVE = [] include Aws::Structure end |