Class: Aws::Plugins::RequestSigner::Handler

Inherits:
Seahorse::Client::Handler show all
Defined in:
lib/aws-sdk-core/plugins/request_signer.rb

Constant Summary collapse

SIGNERS =
{
  'v4'      => Signers::V4,
  'v3https' => Signers::V3,
  'v2'      => Signers::V2,
  's3'      => Signers::S3,
}

Instance Attribute Summary

Attributes inherited from Seahorse::Client::Handler

#handler

Instance Method Summary collapse

Methods inherited from Seahorse::Client::Handler

#initialize, #inspect

Constructor Details

This class inherits a constructor from Seahorse::Client::Handler

Instance Method Details

#call(context) ⇒ Object



70
71
72
73
# File 'lib/aws-sdk-core/plugins/request_signer.rb', line 70

def call(context)
  sign_authenticated_requests(context)
  @handler.call(context)
end