class RedshiftConnector::DataFileBundleParams
Attributes
bucket[R]
filter[R]
logger[R]
schema[R]
table[R]
txn_id[R]
Public Class Methods
new( bucket: nil, schema:, table:, txn_id: nil, filter:, 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, filter:, logger: RedshiftConnector.logger ) @bucket = bucket @schema = schema @table = table @txn_id = txn_id @filter = filter @logger = logger end