Class: Aws::Glue::Types::UpsertRedshiftTargetOptions

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#connection_nameString

The name of the connection to use to write to Redshift.

Returns:

  • (String)


23049
23050
23051
23052
23053
23054
23055
# File 'lib/aws-sdk-glue/types.rb', line 23049

class UpsertRedshiftTargetOptions < Struct.new(
  :table_location,
  :connection_name,
  :upsert_keys)
  SENSITIVE = []
  include Aws::Structure
end

#table_locationString

The physical location of the Redshift table.

Returns:

  • (String)


23049
23050
23051
23052
23053
23054
23055
# File 'lib/aws-sdk-glue/types.rb', line 23049

class UpsertRedshiftTargetOptions < Struct.new(
  :table_location,
  :connection_name,
  :upsert_keys)
  SENSITIVE = []
  include Aws::Structure
end

#upsert_keysArray<String>

The keys used to determine whether to perform an update or insert.

Returns:

  • (Array<String>)


23049
23050
23051
23052
23053
23054
23055
# File 'lib/aws-sdk-glue/types.rb', line 23049

class UpsertRedshiftTargetOptions < Struct.new(
  :table_location,
  :connection_name,
  :upsert_keys)
  SENSITIVE = []
  include Aws::Structure
end