Class: AWS::S3::Connection::Options
- Inherits:
-
Hash
- Object
- Hash
- AWS::S3::Connection::Options
- Defined in:
- lib/aws-matt/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.
259 260 261 262 263 264 265 266 267 268 |
# File 'lib/aws-matt/s3/connection.rb', line 259 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.
258 259 260 |
# File 'lib/aws-matt/s3/connection.rb', line 258 def @options end |
Class Method Details
.valid_options ⇒ Object
253 254 255 |
# File 'lib/aws-matt/s3/connection.rb', line 253 def [:access_key_id, :secret_access_key, :server, :port, :use_ssl, :persistent, :proxy] end |
Instance Method Details
#connecting_through_proxy? ⇒ Boolean
270 271 272 |
# File 'lib/aws-matt/s3/connection.rb', line 270 def connecting_through_proxy? !self[:proxy].nil? end |
#proxy_settings ⇒ Object
274 275 276 277 278 |
# File 'lib/aws-matt/s3/connection.rb', line 274 def proxy_settings proxy_setting_keys.map do |proxy_key| self[:proxy][proxy_key] end end |