You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::GlueDataBrew::Types::SendProjectSessionActionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::SendProjectSessionActionRequest
- Defined in:
- (unknown)
Overview
When passing SendProjectSessionActionRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
preview: false,
name: "ProjectName", # required
recipe_step: {
action: { # required
operation: "Operation", # required
parameters: {
"ParameterName" => "ParameterValue",
},
},
condition_expressions: [
{
condition: "Condition", # required
value: "ConditionValue",
target_column: "TargetColumn", # required
},
],
},
step_index: 1,
client_session_id: "ClientSessionId",
view_frame: {
start_column_index: 1, # required
column_range: 1,
hidden_columns: ["ColumnName"],
},
}
Instance Attribute Summary collapse
-
#client_session_id ⇒ String
A unique identifier for an interactive session that\'s currently open and ready for work.
-
#name ⇒ String
The name of the project to apply the action to.
-
#preview ⇒ Boolean
Returns the result of the recipe step, without applying it.
-
#recipe_step ⇒ Types::RecipeStep
Represents a single step to be performed in an AWS Glue DataBrew recipe.
.
-
#step_index ⇒ Integer
The index from which to preview a step.
-
#view_frame ⇒ Types::ViewFrame
Represents the data being being transformed during an AWS Glue DataBrew project session.
.
Instance Attribute Details
#client_session_id ⇒ String
A unique identifier for an interactive session that\'s currently open and ready for work. The action will be performed on this session.
#name ⇒ String
The name of the project to apply the action to.
#preview ⇒ Boolean
Returns the result of the recipe step, without applying it. The result isn\'t added to the view frame stack.
#recipe_step ⇒ Types::RecipeStep
Represents a single step to be performed in an AWS Glue DataBrew recipe.
#step_index ⇒ Integer
The index from which to preview a step. This index is used to preview the result of steps that have already been applied, so that the resulting view frame is from earlier in the view frame stack.
#view_frame ⇒ Types::ViewFrame
Represents the data being being transformed during an AWS Glue DataBrew project session.