Class: AWS::S3::Authentication::QueryString

Inherits:
Signature
  • Object
show all
Defined in:
lib/aws/s3/authentication.rb

Overview

Provides query string authentication by computing the three authorization parameters: AWSAccessKeyId, Expires and Signature. More details about the various authentication schemes can be found in the docs for its containing module, Authentication.

Instance Attribute Summary

Attributes inherited from Signature

#access_key_id, #options, #request, #secret_access_key

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ QueryString

Returns a new instance of QueryString.



102
103
104
105
106
# File 'lib/aws/s3/authentication.rb', line 102

def initialize(*args)
  super
  options[:url_encode] = true
  self << build
end