module Aws::Record::DefaultMarshaler
This is an identity marshaler, which performs no changes for type casting or serialization. It is generally not recommended for use.
Public Class Methods
serialize(raw_value, options = {})
click to toggle source
# File lib/aws-record/record/attribute.rb, line 120 def self.serialize(raw_value, options = {}) raw_value end
type_cast(raw_value, options = {})
click to toggle source
# File lib/aws-record/record/attribute.rb, line 116 def self.type_cast(raw_value, options = {}) raw_value end