class Aws::Plugins::Protocols::JsonRpc

@seahorse.client.option [Boolean] :simple_json (false)

Disables request parameter conversion, validation, and formatting.
Also disable response data type conversions. This option is useful
when you want to ensure the highest level of performance by
avoiding overhead of walking request parameters and response data
structures.

When `:simple_json` is enabled, the request parameters hash must
be formatted exactly as the DynamoDB API expects.

Public Instance Methods

add_handlers(handlers, config) click to toggle source
# File lib/aws-sdk-core/plugins/protocols/json_rpc.rb, line 23
def add_handlers(handlers, config)
  handlers.add(Json::ErrorHandler, step: :sign)
  handlers.add(Json::RpcHeadersHandler)
  handlers.add(config.simple_json ?
    Json::SimpleBodyHandler :
    Json::RpcBodyHandler)
end