Class: Aws::Glue::Types::Join

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Specifies a transform that joins two datasets into one dataset using a comparison phrase on the specified data property keys. You can use inner, outer, left, right, left semi, and left anti joins.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#columnsArray<Types::JoinColumn>

A list of the two columns to be joined.

Returns:



14150
14151
14152
14153
14154
14155
14156
14157
# File 'lib/aws-sdk-glue/types.rb', line 14150

class Join < Struct.new(
  :name,
  :inputs,
  :join_type,
  :columns)
  SENSITIVE = []
  include Aws::Structure
end

#inputsArray<String>

The data inputs identified by their node names.

Returns:

  • (Array<String>)


14150
14151
14152
14153
14154
14155
14156
14157
# File 'lib/aws-sdk-glue/types.rb', line 14150

class Join < Struct.new(
  :name,
  :inputs,
  :join_type,
  :columns)
  SENSITIVE = []
  include Aws::Structure
end

#join_typeString

Specifies the type of join to be performed on the datasets.

Returns:

  • (String)


14150
14151
14152
14153
14154
14155
14156
14157
# File 'lib/aws-sdk-glue/types.rb', line 14150

class Join < Struct.new(
  :name,
  :inputs,
  :join_type,
  :columns)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the transform node.

Returns:

  • (String)


14150
14151
14152
14153
14154
14155
14156
14157
# File 'lib/aws-sdk-glue/types.rb', line 14150

class Join < Struct.new(
  :name,
  :inputs,
  :join_type,
  :columns)
  SENSITIVE = []
  include Aws::Structure
end