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.
25118 25119 25120 25121 25122 25123 25124 |
# File 'lib/aws-sdk-glue/types.rb', line 25118 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.
25118 25119 25120 25121 25122 25123 25124 |
# File 'lib/aws-sdk-glue/types.rb', line 25118 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.
25118 25119 25120 25121 25122 25123 25124 |
# File 'lib/aws-sdk-glue/types.rb', line 25118 class UpsertRedshiftTargetOptions < Struct.new( :table_location, :connection_name, :upsert_keys) SENSITIVE = [] include Aws::Structure end |