Sha256: 904660c5106f67a5c080f211301011aa25d898ed2e061df44b912b83f6e22d42
Contents?: true
Size: 1.71 KB
Versions: 1
Compression:
Stored size: 1.71 KB
Contents
# frozen_string_literal: true # WARNING ABOUT GENERATED CODE # # This file is generated. See the contributing guide for more information: # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md # # WARNING ABOUT GENERATED CODE module Aws::NotificationsContacts class EndpointProvider def resolve_endpoint(parameters) use_fips = parameters.use_fips endpoint = parameters.endpoint region = parameters.region if Aws::Endpoints::Matchers.set?(endpoint) if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported" end return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {}) end if Aws::Endpoints::Matchers.set?(region) if (partition_result = Aws::Endpoints::Matchers.aws_partition(region)) if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) return Aws::Endpoints::Endpoint.new(url: "https://notifications-contacts-fips.#{partition_result['implicitGlobalRegion']}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"#{partition_result['implicitGlobalRegion']}"}]}) end return Aws::Endpoints::Endpoint.new(url: "https://notifications-contacts.#{partition_result['implicitGlobalRegion']}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"#{partition_result['implicitGlobalRegion']}"}]}) end end raise ArgumentError, "Invalid Configuration: Missing Region" raise ArgumentError, 'No endpoint could be resolved' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aws-sdk-notificationscontacts-1.0.0 | lib/aws-sdk-notificationscontacts/endpoint_provider.rb |