Exception: Aws::Errors::InvalidRegionError

Inherits:
ArgumentError
  • Object
show all
Defined in:
gems/aws-sdk-core/lib/aws-sdk-core/errors.rb

Overview

Raised when a client is contsructed and the region is not valid.

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ InvalidRegionError

Returns a new instance of InvalidRegionError.



241
242
243
244
245
246
247
248
249
250
251
252
253
254
# File 'gems/aws-sdk-core/lib/aws-sdk-core/errors.rb', line 241

def initialize(*args)
  super(<<-MSG)
Invalid `:region` option was provided.

* Not every service is available in every region.

* Never suffix region names with availability zones.
  Use "us-east-1", not "us-east-1a"

Known AWS regions include (not specific to this service):

#{possible_regions}
  MSG
end