Sha256: 16d036302f63dd876860d2abb58442ca39bc1ff6398cd1d0a1b6116aa5ce8790

Contents?: true

Size: 1.21 KB

Versions: 3

Compression:

Stored size: 1.21 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.default_provider.resolve(
          service: cfg.api.metadata('endpointPrefix'),
          region: cfg.region,
          scheme: 'https'
        )
      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

Version Path
aws-sdk-core-2.0.3 lib/aws-sdk-core/plugins/regional_endpoint.rb
aws-sdk-core-2.0.2 lib/aws-sdk-core/plugins/regional_endpoint.rb
aws-sdk-core-2.0.1 lib/aws-sdk-core/plugins/regional_endpoint.rb