Class: AWS::S3::Authentication::QueryString
- Defined in:
- lib/aws-matt/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
-
#initialize(*args) ⇒ QueryString
constructor
A new instance of QueryString.
Constructor Details
#initialize(*args) ⇒ QueryString
Returns a new instance of QueryString.
102 103 104 105 106 |
# File 'lib/aws-matt/s3/authentication.rb', line 102 def initialize(*args) super [:url_encode] = true self << build end |