Class: Aws::GlueDataBrew::Types::SendProjectSessionActionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::SendProjectSessionActionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:client_session_id]
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
If true, the result of the recipe step will be returned, but not applied.
-
#recipe_step ⇒ Types::RecipeStep
Represents a single step from a DataBrew recipe to be performed.
-
#step_index ⇒ Integer
The index from which to preview a step.
-
#view_frame ⇒ Types::ViewFrame
Represents the data being transformed during an action.
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.
3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3513 class SendProjectSessionActionRequest < Struct.new( :preview, :name, :recipe_step, :step_index, :client_session_id, :view_frame) SENSITIVE = [:client_session_id] include Aws::Structure end |
#name ⇒ String
The name of the project to apply the action to.
3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3513 class SendProjectSessionActionRequest < Struct.new( :preview, :name, :recipe_step, :step_index, :client_session_id, :view_frame) SENSITIVE = [:client_session_id] include Aws::Structure end |
#preview ⇒ Boolean
If true, the result of the recipe step will be returned, but not applied.
3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3513 class SendProjectSessionActionRequest < Struct.new( :preview, :name, :recipe_step, :step_index, :client_session_id, :view_frame) SENSITIVE = [:client_session_id] include Aws::Structure end |
#recipe_step ⇒ Types::RecipeStep
Represents a single step from a DataBrew recipe to be performed.
3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3513 class SendProjectSessionActionRequest < Struct.new( :preview, :name, :recipe_step, :step_index, :client_session_id, :view_frame) SENSITIVE = [:client_session_id] include Aws::Structure end |
#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.
3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3513 class SendProjectSessionActionRequest < Struct.new( :preview, :name, :recipe_step, :step_index, :client_session_id, :view_frame) SENSITIVE = [:client_session_id] include Aws::Structure end |
#view_frame ⇒ Types::ViewFrame
Represents the data being transformed during an action.
3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3513 class SendProjectSessionActionRequest < Struct.new( :preview, :name, :recipe_step, :step_index, :client_session_id, :view_frame) SENSITIVE = [:client_session_id] include Aws::Structure end |