Class: AWS::S3::Connection::Options
- Defined in:
- lib/aws/s3/connection.rb
Overview
:nodoc:
Constant Summary collapse
- VALID_OPTIONS =
[:access_key_id, :secret_access_key, :server, :port, :use_ssl, :persistent, :proxy].freeze
Instance Method Summary collapse
- #connecting_through_proxy? ⇒ Boolean
-
#initialize(options = {}) ⇒ Options
constructor
A new instance of Options.
- #proxy_settings ⇒ Object
Methods inherited from Hash
#to_normalized_options, #to_normalized_options!, #to_query_string
Constructor Details
#initialize(options = {}) ⇒ Options
Returns a new instance of Options.
254 255 256 257 258 259 |
# File 'lib/aws/s3/connection.rb', line 254 def initialize( = {}) super() validate() replace(:server => DEFAULT_HOST, :port => ([:use_ssl] ? 443 : 80)) merge!() end |
Instance Method Details
#connecting_through_proxy? ⇒ Boolean
261 262 263 |
# File 'lib/aws/s3/connection.rb', line 261 def connecting_through_proxy? !self[:proxy].nil? end |
#proxy_settings ⇒ Object
265 266 267 |
# File 'lib/aws/s3/connection.rb', line 265 def proxy_settings self[:proxy].values_at(:host, :port, :user, :password) end |