Class: Aws::Glue::Types::Merge
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::Merge
 
- 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
- 
  
    
      #inputs  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The data inputs identified by their node names. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the transform node. 
- 
  
    
      #primary_keys  ⇒ Array<Array<String>> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of primary key fields to match records from the source and staging dynamic frames. 
- 
  
    
      #source  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The source ‘DynamicFrame` that will be merged with a staging `DynamicFrame`. 
Instance Attribute Details
#inputs ⇒ Array<String>
The data inputs identified by their node names.
| 19301 19302 19303 19304 19305 19306 19307 19308 | # File 'lib/aws-sdk-glue/types.rb', line 19301 class Merge < Struct.new( :name, :inputs, :source, :primary_keys) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The name of the transform node.
| 19301 19302 19303 19304 19305 19306 19307 19308 | # File 'lib/aws-sdk-glue/types.rb', line 19301 class Merge < Struct.new( :name, :inputs, :source, :primary_keys) SENSITIVE = [] include Aws::Structure end | 
#primary_keys ⇒ Array<Array<String>>
The list of primary key fields to match records from the source and staging dynamic frames.
| 19301 19302 19303 19304 19305 19306 19307 19308 | # File 'lib/aws-sdk-glue/types.rb', line 19301 class Merge < Struct.new( :name, :inputs, :source, :primary_keys) SENSITIVE = [] include Aws::Structure end |