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



108
109
110
# File 'lib/aws-record/record/attribute.rb', line 108

def self.serialize(raw_value, _options = {})
  raw_value
end

.type_cast(raw_value, _options = {}) ⇒ Object



104
105
106
# File 'lib/aws-record/record/attribute.rb', line 104

def self.type_cast(raw_value, _options = {})
  raw_value
end