module Aws

def config=(config)

Parameters:
  • config (Hash) --
def config=(config)
  if Hash === config
    @config = config
  else
    raise ArgumentError, 'configuration object must be a hash'
  end
end