Class: Aws::CloudFrontKeyValueStore::EndpointParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFrontKeyValueStore::EndpointParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfrontkeyvaluestore/endpoint_parameters.rb
Overview
Endpoint parameters used to influence endpoints per request.
Constant Summary collapse
- PARAM_MAP =
{ 'KvsARN' => :kvs_arn, 'Region' => :region, 'UseFIPS' => :use_fips, 'Endpoint' => :endpoint, }.freeze
Instance Attribute Summary collapse
-
#endpoint ⇒ String
Override the endpoint used to send this request.
-
#kvs_arn ⇒ String
The ARN of the Key Value Store.
-
#region ⇒ String
The AWS region used to dispatch the request.
-
#use_fips ⇒ Boolean
When true, send this request to the FIPS-compliant regional endpoint.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ EndpointParameters
constructor
A new instance of EndpointParameters.
Constructor Details
#initialize(options = {}) ⇒ EndpointParameters
Returns a new instance of EndpointParameters.
51 52 53 54 55 56 57 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/endpoint_parameters.rb', line 51 def initialize( = {}) self[:kvs_arn] = [:kvs_arn] self[:region] = [:region] self[:use_fips] = [:use_fips] self[:use_fips] = false if self[:use_fips].nil? self[:endpoint] = [:endpoint] end |
Instance Attribute Details
#endpoint ⇒ String
Override the endpoint used to send this request
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/endpoint_parameters.rb', line 33 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( = {}) self[:kvs_arn] = [:kvs_arn] self[:region] = [:region] self[:use_fips] = [:use_fips] self[:use_fips] = false if self[:use_fips].nil? self[:endpoint] = [:endpoint] end def self.create(config, ={}) new({ region: config.region, use_fips: config.use_fips_endpoint, endpoint: (config.endpoint.to_s unless config.regional_endpoint), }.merge()) end end |
#kvs_arn ⇒ String
The ARN of the Key Value Store
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/endpoint_parameters.rb', line 33 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( = {}) self[:kvs_arn] = [:kvs_arn] self[:region] = [:region] self[:use_fips] = [:use_fips] self[:use_fips] = false if self[:use_fips].nil? self[:endpoint] = [:endpoint] end def self.create(config, ={}) new({ region: config.region, use_fips: config.use_fips_endpoint, endpoint: (config.endpoint.to_s unless config.regional_endpoint), }.merge()) end end |
#region ⇒ String
The AWS region used to dispatch the request.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/endpoint_parameters.rb', line 33 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( = {}) self[:kvs_arn] = [:kvs_arn] self[:region] = [:region] self[:use_fips] = [:use_fips] self[:use_fips] = false if self[:use_fips].nil? self[:endpoint] = [:endpoint] end def self.create(config, ={}) new({ region: config.region, use_fips: config.use_fips_endpoint, endpoint: (config.endpoint.to_s unless config.regional_endpoint), }.merge()) end end |
#use_fips ⇒ Boolean
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.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/endpoint_parameters.rb', line 33 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( = {}) self[:kvs_arn] = [:kvs_arn] self[:region] = [:region] self[:use_fips] = [:use_fips] self[:use_fips] = false if self[:use_fips].nil? self[:endpoint] = [:endpoint] end def self.create(config, ={}) new({ region: config.region, use_fips: config.use_fips_endpoint, endpoint: (config.endpoint.to_s unless config.regional_endpoint), }.merge()) end end |
Class Method Details
.create(config, options = {}) ⇒ Object
59 60 61 62 63 64 65 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/endpoint_parameters.rb', line 59 def self.create(config, ={}) new({ region: config.region, use_fips: config.use_fips_endpoint, endpoint: (config.endpoint.to_s unless config.regional_endpoint), }.merge()) end |