module Dynamodb::AttributeAssignment

Constants

ATTRIBUTE_TYPES
KEY_TYPES
PROJECTION_TYPES

Public Class Methods

included(base) click to toggle source
# File lib/dynamodb/attribute_assignment.rb, line 5
def self.included(base)
  base.extend ClassMethods
end

Public Instance Methods

client() click to toggle source
# File lib/dynamodb/attribute_assignment.rb, line 38
def client
  self.class.client
end
global_indexes() click to toggle source
# File lib/dynamodb/attribute_assignment.rb, line 50
def global_indexes
  self.class.global_indexes
end
hash_key() click to toggle source
# File lib/dynamodb/attribute_assignment.rb, line 30
def hash_key
  self.class.hash_key
end
indexes() click to toggle source
# File lib/dynamodb/attribute_assignment.rb, line 42
def indexes
  self.class.indexes
end
local_indexes() click to toggle source
# File lib/dynamodb/attribute_assignment.rb, line 46
def local_indexes
  self.class.local_indexes
end
range_key() click to toggle source
# File lib/dynamodb/attribute_assignment.rb, line 34
def range_key
  self.class.range_key
end
table_name() click to toggle source
# File lib/dynamodb/attribute_assignment.rb, line 26
def table_name
  self.class.table_name
end