Sha256: 6635a61680fe953ccd26a47fc2ddc7ac15999debf5077abdbd2877dee31c5b43
Contents?: true
Size: 1.12 KB
Versions: 3
Compression:
Stored size: 1.12 KB
Contents
module Aws module Plugins # @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_DEFAULT_REGION']`. # Also checks `AWS_REGION` and `AMAZON_REGION`. # # @seahorse.client.option [String] :endpoint A default endpoint is # constructed from the `:region`. # class RegionalEndpoint < Seahorse::Client::Plugin # raised when region is not configured MISSING_REGION = 'missing required configuration option :region' option(:region) { keys = %w(AWS_REGION AMAZON_REGION AWS_DEFAULT_REGION) ENV.values_at(*keys).compact.first } option(:endpoint) do |cfg| EndpointProvider.resolve(cfg.region, cfg.api.metadata['endpointPrefix']) end 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 end end end
Version data entries
3 entries across 3 versions & 1 rubygems