Sha256: 0013c96b70cf8da8b961e6c4ef2a7d0ad994d57d28e060f2f1cc23c6ab19a566

Contents?: true

Size: 1.91 KB

Versions: 32

Compression:

Stored size: 1.91 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::ServiceCatalog
  # Endpoint parameters used to influence endpoints per request.
  #
  # @!attribute region
  #   The AWS region used to dispatch the request.
  #
  #   @return [String]
  #
  # @!attribute use_dual_stack
  #   When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
  #
  #   @return [Boolean]
  #
  # @!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_dual_stack,
    :use_fips,
    :endpoint,
  ) do
    include Aws::Structure

    # @api private
    class << self
      PARAM_MAP = {
        'Region' => :region,
        'UseDualStack' => :use_dual_stack,
        'UseFIPS' => :use_fips,
        'Endpoint' => :endpoint,
      }.freeze
    end

    def initialize(options = {})
      self[:region] = options[:region]
      self[:use_dual_stack] = options[:use_dual_stack]
      self[:use_dual_stack] = false if self[:use_dual_stack].nil?
      if self[:use_dual_stack].nil?
        raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
      end
      self[:use_fips] = options[:use_fips]
      self[:use_fips] = false if self[:use_fips].nil?
      if self[:use_fips].nil?
        raise ArgumentError, "Missing required EndpointParameter: :use_fips"
      end
      self[:endpoint] = options[:endpoint]
    end
  end
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
aws-sdk-servicecatalog-1.105.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.104.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.103.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.102.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.101.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.100.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.99.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.98.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.97.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.96.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.95.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.93.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.92.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.91.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.90.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.89.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.88.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.87.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.86.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb
aws-sdk-servicecatalog-1.85.0 lib/aws-sdk-servicecatalog/endpoint_parameters.rb