class Multiwoven::Integrations::Source::AwsAthena::Client

def create_connection(connection_config)

def create_connection(connection_config)
  Aws.config.update({ credentials: Aws::Credentials.new(connection_config[:access_key], connection_config[:secret_access_key]), region: connection_config[:region] })
  @database = connection_config[:schema]
  @output_location = connection_config[:output_location]
  Aws::Athena::Client.new
end