Class: Aws::Json::JSONEngine Private
- Inherits:
-
Object
- Object
- Aws::Json::JSONEngine
- Defined in:
- lib/aws-sdk-core/json/oj_engine.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Class Method Summary collapse
- .dump(value) ⇒ Object private
- .load(json) ⇒ Object private
Class Method Details
.dump(value) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
9 10 11 |
# File 'lib/aws-sdk-core/json/oj_engine.rb', line 9 def self.dump(value) JSON.dump(value) end |
.load(json) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
5 6 7 |
# File 'lib/aws-sdk-core/json/oj_engine.rb', line 5 def self.load(json) JSON.load(json) end |