Class: AWS::S3::Connection::Options
- Inherits:
-
Hash
- Object
- Hash
- AWS::S3::Connection::Options
- Defined in:
- lib/aws/s3/connection.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Class Method Summary collapse
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.
261 262 263 264 265 266 267 268 269 270 |
# File 'lib/aws/s3/connection.rb', line 261 def initialize( = {}) super() @options = validate! extract_proxy_settings! extract_persistent! extract_server! extract_port! extract_remainder! end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
260 261 262 |
# File 'lib/aws/s3/connection.rb', line 260 def @options end |
Class Method Details
.valid_options ⇒ Object
255 256 257 |
# File 'lib/aws/s3/connection.rb', line 255 def [:access_key_id, :secret_access_key, :server, :port, :use_ssl, :persistent, :proxy] end |
Instance Method Details
#connecting_through_proxy? ⇒ Boolean
272 273 274 |
# File 'lib/aws/s3/connection.rb', line 272 def connecting_through_proxy? !self[:proxy].nil? end |
#proxy_settings ⇒ Object
276 277 278 279 280 |
# File 'lib/aws/s3/connection.rb', line 276 def proxy_settings proxy_setting_keys.map do |proxy_key| self[:proxy][proxy_key] end end |