class Aws::DynamoDB::AttributeValue
@api private
Public Class Methods
new()
click to toggle source
# File lib/aws-sdk-dynamodb/attribute_value.rb, line 12 def initialize @marshaler = Marshaler.new @unmarshaler = Unmarshaler.new end
Public Instance Methods
marshal(value)
click to toggle source
# File lib/aws-sdk-dynamodb/attribute_value.rb, line 17 def marshal(value) @marshaler.format(value) end
unmarshal(value)
click to toggle source
# File lib/aws-sdk-dynamodb/attribute_value.rb, line 21 def unmarshal(value) @unmarshaler.format(value) end