You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::QuickSight::Types::JoinInstruction

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing JoinInstruction as input to an Aws::Client method, you can use a vanilla Hash:

{
  left_operand: "LogicalTableId", # required
  right_operand: "LogicalTableId", # required
  type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
  on_clause: "OnClause", # required
}

Join instruction.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#left_operandString

Left operand.

Returns:

  • (String)

    Left operand.

#on_clauseString

On Clause.

Returns:

  • (String)

    On Clause.

#right_operandString

Right operand.

Returns:

  • (String)

    Right operand.

#typeString

Type.

Possible values:

  • INNER
  • OUTER
  • LEFT
  • RIGHT

Returns:

  • (String)

    Type.