module Aws::Json::JsonEngine
Public Class Methods
Source
# File lib/aws-sdk-core/json/json_engine.rb, line 15 def dump(value) JSON.dump(value) end
Source
# File lib/aws-sdk-core/json/json_engine.rb, line 9 def load(json) JSON.parse(json) rescue JSON::ParserError => e raise ParseError.new(e) end