class Aws::Plugins::DynamoDBCRC32Validation
@seahorse.client.option [Boolean] :compute_checksums (true)
When `true`, a CRC32 checksum is computed of every HTTP response body and compared against the `X-Amz-Crc32` header. If the checksums do not match, the request is re-sent. Failures can be retried up to `:retry_limit` times.
Public Instance Methods
add_handlers(handlers, config)
click to toggle source
# File lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb, line 13 def add_handlers(handlers, config) if config.compute_checksums handlers.add(Handler, step: :sign) end end