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
show all
Defined in:
(unknown)

Overview

Note:

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

Instance Attribute Details

#client_session_idString

A unique identifier for an interactive session that\'s currently open and ready for work. The action will be performed on this session.

Returns:

  • (String)

    A unique identifier for an interactive session that\'s currently open and ready for work.

#nameString

The name of the project to apply the action to.

Returns:

  • (String)

    The name of the project to apply the action to.

#previewBoolean

Returns the result of the recipe step, without applying it. The result isn\'t added to the view frame stack.

Returns:

  • (Boolean)

    Returns the result of the recipe step, without applying it.

#recipe_stepTypes::RecipeStep

Represents a single step to be performed in an AWS Glue DataBrew recipe.

Returns:

  • (Types::RecipeStep)

    Represents a single step to be performed in an AWS Glue DataBrew recipe.

    .

#step_indexInteger

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.

Returns:

  • (Integer)

    The index from which to preview a step.

#view_frameTypes::ViewFrame

Represents the data being being transformed during an AWS Glue DataBrew project session.

Returns:

  • (Types::ViewFrame)

    Represents the data being being transformed during an AWS Glue DataBrew project session.

    .