Sha256: a3a51b0719a69b67d7079e6e61fe8f86087ac36041ac4788fe91c3912c866931
Contents?: true
Size: 1.58 KB
Versions: 16
Compression:
Stored size: 1.58 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::CloudFrontKeyValueStore # Endpoint parameters used to influence endpoints per request. # # @!attribute kvs_arn # The ARN of the Key Value Store # # @return [String] # # @!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( :kvs_arn, :region, :use_fips, :endpoint, ) do include Aws::Structure # @api private class << self PARAM_MAP = { 'KvsARN' => :kvs_arn, 'Region' => :region, 'UseFIPS' => :use_fips, 'Endpoint' => :endpoint, }.freeze end def initialize(options = {}) self[:kvs_arn] = options[:kvs_arn] self[:region] = options[:region] 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
16 entries across 16 versions & 1 rubygems