Documentation ¶ Index ¶ type Item type Store func NewStore(name string, table string, cfgs ...*aws.Config) *Store func (s *Store) Delete(key string) error func (s *Store) Get(key string) (value []byte, err error) func (s *Store) Name() string func (s *Store) Put(key string, value []byte) error Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Item ¶ type Item struct { Key string `json:"key"` Value string `json:"value"` UpdatedAt time.Time `json:"updated_at"` } type Store ¶ type Store struct { // contains filtered or unexported fields } func NewStore ¶ func NewStore(name string, table string, cfgs ...*aws.Config) *Store func (*Store) Delete ¶ func (s *Store) Delete(key string) error func (*Store) Get ¶ func (s *Store) Get(key string) (value []byte, err error) func (*Store) Name ¶ func (s *Store) Name() string func (*Store) Put ¶ func (s *Store) Put(key string, value []byte) error Source Files ¶ View all Source files dynamo.go Click to show internal directories. Click to hide internal directories.