AWS services or capabilities described in AWS Documentation may vary by region/location. Click
Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Module: Aws::Record::DefaultMarshaler
- Defined in:
- lib/aws-record/record/attribute.rb
Overview
This is an identity marshaler, which performs no changes for type casting or serialization. It is generally not recommended for use.
Class Method Summary
collapse
Class Method Details
.serialize(raw_value, options = {}) ⇒ Object
120
121
122
|
# File 'lib/aws-record/record/attribute.rb', line 120
def self.serialize(raw_value, options = {})
raw_value
end
|
.type_cast(raw_value, options = {}) ⇒ Object
116
117
118
|
# File 'lib/aws-record/record/attribute.rb', line 116
def self.type_cast(raw_value, options = {})
raw_value
end
|