class Multiwoven::Integrations::Source::AwsSagemakerModel::Client

def create_connection(connection_config)

def create_connection(connection_config)
  @client = Aws::SageMaker::Client.new(
    region: connection_config[:region],
    access_key_id: connection_config[:access_key],
    secret_access_key: connection_config[:secret_access_key]
  )
  @client_runtime = Aws::SageMakerRuntime::Client.new(
    region: connection_config[:region],
    access_key_id: connection_config[:access_key],
    secret_access_key: connection_config[:secret_access_key]
  )
end