Sha256: 37b4709c3fc0f6b36f880d2a380ce0d30c64f0f8b3739415a7da82c7b5dfc97d
Contents?: true
Size: 1.51 KB
Versions: 2
Compression:
Stored size: 1.51 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::DataZone # Endpoint parameters used to influence endpoints per request. # # @!attribute region # The AWS region used to dispatch the request. # # @return [String] # # @!attribute use_fips # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error. # # @return [Boolean] # # @!attribute endpoint # Override the endpoint used to send this request # # @return [String] # EndpointParameters = Struct.new( :region, :use_fips, :endpoint, ) do include Aws::Structure # @api private class << self PARAM_MAP = { 'Region' => :region, 'UseFIPS' => :use_fips, 'Endpoint' => :endpoint, }.freeze end def initialize(options = {}) self[:region] = options[:region] self[:use_fips] = options[:use_fips] self[:use_fips] = false if self[:use_fips].nil? self[:endpoint] = options[:endpoint] end def self.create(config, options={}) new({ region: config.region, use_fips: config.use_fips_endpoint, endpoint: (config.endpoint.to_s unless config.regional_endpoint), }.merge(options)) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
aws-sdk-datazone-1.28.0 | lib/aws-sdk-datazone/endpoint_parameters.rb |
aws-sdk-datazone-1.27.0 | lib/aws-sdk-datazone/endpoint_parameters.rb |