Class: AWS::S3::Base::RequestOptions

Inherits:
Hash
  • Object
show all
Defined in:
lib/aws/s3/base.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options, verb = :get) ⇒ RequestOptions

Returns a new instance of RequestOptions.



212
213
214
215
216
# File 'lib/aws/s3/base.rb', line 212

def initialize(options, verb = :get)
  @options = options.to_normalized_options
  @verb    = verb
  super()
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



204
205
206
# File 'lib/aws/s3/base.rb', line 204

def options
  @options
end

#verbObject (readonly)

Returns the value of attribute verb.



204
205
206
# File 'lib/aws/s3/base.rb', line 204

def verb
  @verb
end

Class Method Details

.process(*args, &block) ⇒ Object



207
208
209
# File 'lib/aws/s3/base.rb', line 207

def process(*args, &block)
  new(*args, &block).process!
end

Instance Method Details

#process!Object



218
219
220
221
# File 'lib/aws/s3/base.rb', line 218

def process!
  set_access_controls! if verb == :put
  replace(options)
end