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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-glue/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>)


17013
17014
17015
17016
17017
17018
17019
17020
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17013

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

#nameString

The name of the transform node.

Returns:

  • (String)


17013
17014
17015
17016
17017
17018
17019
17020
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17013

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>>)


17013
17014
17015
17016
17017
17018
17019
17020
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17013

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)


17013
17014
17015
17016
17017
17018
17019
17020
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17013

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