class Aws::Plugins::RegionalEndpoint
@seahorse.client.option [required, String] :region
The AWS region to connect to. The region is used to construct the client endpoint. Defaults to `ENV['AWS_REGION']`. Also checks `AMAZON_REGION` and `AWS_DEFAULT_REGION`.
@seahorse.client.option [String] :endpoint A default endpoint is
constructed from the `:region`.
Constants
- MISSING_REGION
raised when region is not configured
Public Instance Methods
after_initialize(client)
click to toggle source
# File lib/aws-sdk-core/plugins/regional_endpoint.rb, line 26 def after_initialize(client) if client.config.region.nil? or client.config.region == '' msg = "missing region; use :region option or " msg << "export region name to ENV['AWS_REGION']" raise Errors::MissingRegionError, msg end end