class Aws::Errors::MissingRegionError

Raised when a client is constructed and region is not specified.

def initialize(*args)

def initialize(*args)
  msg = 'No region was provided. Configure the `:region` option or '\
    "export the region name to ENV['AWS_REGION']"
  super(msg)
end