module Dynamoid::Attributes

Attributes

attributes[RW]
raw_attributes[RW]

Public Instance Methods

[](name)
Alias for: read_attribute
[]=(name, value)
Alias for: write_attribute
read_attribute(name) click to toggle source
# File lib/dynamoid/attributes.rb, line 15
def read_attribute(name)
  attributes[name.to_sym]
end
Also aliased as: []
write_attribute(name, value) click to toggle source
# File lib/dynamoid/attributes.rb, line 10
def write_attribute(name, value)
  attributes[name.to_sym] = value
end
Also aliased as: []=