Sha256: f4c7b960200f2a5587fdc749d276d351f69e102aace12d02a225c7bd887146cf
Contents?: true
Size: 890 Bytes
Versions: 38
Compression:
Stored size: 890 Bytes
Contents
module Aws module Json # This plugin performs two trivial translations: # # * The request parameters are serialized as JSON for the request body # * The response body is deserialized as JSON for the response data # # No attempt is made to extract errors from the HTTP response body. # Parsing the response only happens for a successful response. # class SimpleBodyHandler < Seahorse::Client::Handler def call(context) build_json(context) @handler.call(context).on_success do |response| response.error = nil response.data = parse_json(context) end end private def build_json(context) context.http_request.body = MultiJson.dump(context.params) end def parse_json(context) MultiJson.load(context.http_response.body_contents) end end end end
Version data entries
38 entries across 38 versions & 1 rubygems