Class: Aws::Glue::Types::UpsertRedshiftTargetOptions
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::UpsertRedshiftTargetOptions
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
The options to configure an upsert operation when writing to a Redshift target .
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #connection_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the connection to use to write to Redshift. 
- 
  
    
      #table_location  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The physical location of the Redshift table. 
- 
  
    
      #upsert_keys  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The keys used to determine whether to perform an update or insert. 
Instance Attribute Details
#connection_name ⇒ String
The name of the connection to use to write to Redshift.
| 27745 27746 27747 27748 27749 27750 27751 | # File 'lib/aws-sdk-glue/types.rb', line 27745 class UpsertRedshiftTargetOptions < Struct.new( :table_location, :connection_name, :upsert_keys) SENSITIVE = [] include Aws::Structure end | 
#table_location ⇒ String
The physical location of the Redshift table.
| 27745 27746 27747 27748 27749 27750 27751 | # File 'lib/aws-sdk-glue/types.rb', line 27745 class UpsertRedshiftTargetOptions < Struct.new( :table_location, :connection_name, :upsert_keys) SENSITIVE = [] include Aws::Structure end | 
#upsert_keys ⇒ Array<String>
The keys used to determine whether to perform an update or insert.
| 27745 27746 27747 27748 27749 27750 27751 | # File 'lib/aws-sdk-glue/types.rb', line 27745 class UpsertRedshiftTargetOptions < Struct.new( :table_location, :connection_name, :upsert_keys) SENSITIVE = [] include Aws::Structure end |