class Aws::Plugins::SQSMd5s

@seahorse.client.option [Boolean] :verify_checksums (true)

When `true` MD5 checksums will be computed for messages sent to
an SQS queue and matched against MD5 checksums returned by Amazon SQS.
`Aws::Errors::Checksum` errors are raised for cases where checksums do
not match.

Constants

OPERATIONS_TO_VERIFY

Public Instance Methods

add_handlers(handlers, config) click to toggle source
# File lib/aws-sdk-core/plugins/sqs_md5s.rb, line 151
def add_handlers(handlers, config)
  if config.verify_checksums
    handlers.add(Handler, {
      priority: 10 ,
      step: :validate,
      operations: SQSMd5s::OPERATIONS_TO_VERIFY
    })
  end
end