class Aws::Json::RpcBodyHandler

def call(context)

Returns:
  • (Seahorse::Client::Response) -

Parameters:
  • context (Seahorse::Client::RequestContext) --
def call(context)
  build_json(context)
  @handler.call(context).on_success do |response|
    unless response.error
      response.data = parse_json(context)
    end
  end
end