Exception: Aws::Errors::NoSuchEndpointError

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

Overview

Raised when attempting to connect to an endpoint and a ‘SocketError` is received from the HTTP client. This error is typically the result of configuring an invalid `:region`.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ NoSuchEndpointError

Returns a new instance of NoSuchEndpointError.



147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# File 'lib/aws-sdk-core/errors.rb', line 147

def initialize(options = {})
  @context = options[:context]
  @endpoint = @context.http_request.endpoint
  @original_error = options[:original_error]
  super(<<-MSG)
Encountered a `SocketError` while attempting to connect to:

  #{endpoint.to_s}

This is typically the result of an invalid `:region` option or a
poorly formatted `:endpoint` option.

* Avoid configuring the `:endpoint` option directly. Endpoints are constructed
  from the `:region`. The `:endpoint` option is reserved for connecting to
  non-standard test endpoints.

* 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

Instance Attribute Details

#contextObject (readonly)

Returns the value of attribute context.



174
175
176
# File 'lib/aws-sdk-core/errors.rb', line 174

def context
  @context
end

#endpointObject (readonly)

Returns the value of attribute endpoint.



176
177
178
# File 'lib/aws-sdk-core/errors.rb', line 176

def endpoint
  @endpoint
end

#original_errorObject (readonly)

Returns the value of attribute original_error.



178
179
180
# File 'lib/aws-sdk-core/errors.rb', line 178

def original_error
  @original_error
end