class Aws::S3::Plugins::Md5s

httpChecksumRequired traits.
This plugin is effectively deprecated in favor of modeled
@api private

def add_handlers(handlers, config)

def add_handlers(handlers, config)
  if config.compute_checksums
    # priority set low to ensure md5 is computed AFTER the request is
    # built but before it is signed
    handlers.add(
      Handler,
      priority: 10, step: :build, operations: OPTIONAL_OPERATIONS
    )
  end
end