module Aws::Json::JSONEngine
Public Class Methods
dump(value)
click to toggle source
# File lib/aws-sdk-core/json/json_engine.rb, line 13 def dump(value) JSON.dump(value) end
load(json)
click to toggle source
# File lib/aws-sdk-core/json/json_engine.rb, line 7 def load(json) JSON.parse(json) rescue JSON::ParserError => e raise ParseError.new(e) end