class RedshiftCsv::Configuration

Attributes

dbname[RW]
host[RW]
password[RW]
user[RW]

Public Class Methods

new(args) click to toggle source
# File lib/redshift_csv/configuration.rb, line 5
def initialize(args)
  @host = args.fetch(:host, nil)
  @user = args.fetch(:user, nil)
  @password = args.fetch(:password, nil)
  @dbname = args.fetch(:dbname, nil)
end