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.
257 258 259 260 261 262 263 264 265 266 |
# File 'lib/aws/s3/connection.rb', line 257 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.
256 257 258 |
# File 'lib/aws/s3/connection.rb', line 256 def @options end |
Class Method Details
.valid_options ⇒ Object
251 252 253 |
# File 'lib/aws/s3/connection.rb', line 251 def [:access_key_id, :secret_access_key, :server, :port, :use_ssl, :persistent, :proxy] end |
Instance Method Details
#connecting_through_proxy? ⇒ Boolean
268 269 270 |
# File 'lib/aws/s3/connection.rb', line 268 def connecting_through_proxy? !self[:proxy].nil? end |
#proxy_settings ⇒ Object
272 273 274 275 276 |
# File 'lib/aws/s3/connection.rb', line 272 def proxy_settings proxy_setting_keys.map do |proxy_key| self[:proxy][proxy_key] end end |