Sha256: cf526ac0fbc8d8d4d6b5774ad32003dc66a6ec0480ee2bb6b734f29e7b0199c0
Contents?: true
Size: 492 Bytes
Versions: 55
Compression:
Stored size: 492 Bytes
Contents
module Aws module Json class RestHandler < RestBodyHandler # @param [Seahorse::Model::Shapes::Structure] shape # @param [Hash] params def serialize_params(shape, params) Builder.new.to_json(shape, params) end # @param [String] json # @param [Seahorse::Model::Shapes::Structure] shape # @param [Structure, nil] target def parse_body(json, shape, target) Parser.new.parse(shape, json, target) end end end end
Version data entries
55 entries across 55 versions & 1 rubygems