class Aws::DynamoDB::AttributeValue::Marshaler
Public Instance Methods
format(obj)
click to toggle source
# File lib/dymos.rb, line 43 def format(obj) case obj when Time then { s: obj.iso8601 } else orig_format obj end end
Also aliased as: orig_format