Class: Aws::Glue::Types::Merge

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

Overview

Specifies a transform that merges a ‘DynamicFrame` with a staging `DynamicFrame` based on the specified primary keys to identify records. Duplicate records (records with the same primary keys) are not de-duplicated.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#inputsArray<String>

The data inputs identified by their node names.

Returns:

  • (Array<String>)


15894
15895
15896
15897
15898
15899
15900
15901
# File 'lib/aws-sdk-glue/types.rb', line 15894

class Merge < Struct.new(
  :name,
  :inputs,
  :source,
  :primary_keys)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the transform node.

Returns:

  • (String)


15894
15895
15896
15897
15898
15899
15900
15901
# File 'lib/aws-sdk-glue/types.rb', line 15894

class Merge < Struct.new(
  :name,
  :inputs,
  :source,
  :primary_keys)
  SENSITIVE = []
  include Aws::Structure
end

#primary_keysArray<Array<String>>

The list of primary key fields to match records from the source and staging dynamic frames.

Returns:

  • (Array<Array<String>>)


15894
15895
15896
15897
15898
15899
15900
15901
# File 'lib/aws-sdk-glue/types.rb', line 15894

class Merge < Struct.new(
  :name,
  :inputs,
  :source,
  :primary_keys)
  SENSITIVE = []
  include Aws::Structure
end

#sourceString

The source ‘DynamicFrame` that will be merged with a staging `DynamicFrame`.

Returns:

  • (String)


15894
15895
15896
15897
15898
15899
15900
15901
# File 'lib/aws-sdk-glue/types.rb', line 15894

class Merge < Struct.new(
  :name,
  :inputs,
  :source,
  :primary_keys)
  SENSITIVE = []
  include Aws::Structure
end