class RedshiftConnector::DataFileBundleParams

Attributes

bucket[R]
logger[R]
schema[R]
table[R]
txn_id[R]

Public Class Methods

new( bucket: nil, schema:, table:, txn_id: nil, logger: RedshiftConnector.logger ) click to toggle source
# File lib/redshift_connector/data_file_bundle_params.rb, line 5
def initialize(
  bucket: nil,
  schema:,
  table:,
  txn_id: nil,
  logger: RedshiftConnector.logger
)
  @bucket = bucket
  @schema = schema
  @table = table
  @txn_id = txn_id
  @logger = logger
end