@api private
# File lib/aws-sdk-core/dynamodb/attribute_value.rb, line 10 def initialize @marshaler = Marshaler.new @unmarshaler = Unmarshaler.new end
# File lib/aws-sdk-core/dynamodb/attribute_value.rb, line 15 def marshal(value) @marshaler.format(value) end
# File lib/aws-sdk-core/dynamodb/attribute_value.rb, line 19 def unmarshal(value) @unmarshaler.format(value) end