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