Class: Aws::Plugins::HttpChecksum::Handler Private

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

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Constant Summary collapse

CHUNK_SIZE =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

one MB

1 * 1024 * 1024

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

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



13
14
15
16
17
18
19
20
21
# File 'lib/aws-sdk-core/plugins/http_checksum.rb', line 13

def call(context)
  if checksum_required?(context) &&
     !context[:checksum_algorithms] && # skip in favor of flexible checksum
     !context[:s3_express_endpoint] # s3 express endpoints do not support md5
    body = context.http_request.body
    context.http_request.headers['Content-Md5'] ||= md5(body)
  end
  @handler.call(context)
end