Class: AWS::S3::Connection::Options
- Inherits:
-
Hash
- Object
- Hash
- 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
Constructor Details
#initialize(options = {}) ⇒ Options
Returns a new instance of Options.
271 272 273 274 275 276 |
# File 'lib/aws/s3/connection.rb', line 271 def initialize( = {}) super() validate() replace(:server => DEFAULT_HOST, :port => ([:use_ssl] ? 443 : 80)) merge!() end |
Instance Method Details
#connecting_through_proxy? ⇒ Boolean
278 279 280 |
# File 'lib/aws/s3/connection.rb', line 278 def connecting_through_proxy? !self[:proxy].nil? end |
#proxy_settings ⇒ Object
282 283 284 |
# File 'lib/aws/s3/connection.rb', line 282 def proxy_settings self[:proxy].values_at(:host, :port, :user, :password) end |