Class: Aws::Glue::Types::JoinColumn

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

Overview

Note:

When making an API call, you may pass JoinColumn data as a hash:

{
  from: "EnclosedInStringProperty", # required
  keys: [ # required
    ["EnclosedInStringProperty"],
  ],
}

Specifies a column to be joined.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fromString

The column to be joined.

Returns:

  • (String)


16249
16250
16251
16252
16253
16254
# File 'lib/aws-sdk-glue/types.rb', line 16249

class JoinColumn < Struct.new(
  :from,
  :keys)
  SENSITIVE = []
  include Aws::Structure
end

#keysArray<Array<String>>

The key of the column to be joined.

Returns:

  • (Array<Array<String>>)


16249
16250
16251
16252
16253
16254
# File 'lib/aws-sdk-glue/types.rb', line 16249

class JoinColumn < Struct.new(
  :from,
  :keys)
  SENSITIVE = []
  include Aws::Structure
end