Documentation ¶
Index ¶
- type Database
- func (db *Database) CreateOrUpdate(entity interface{}, tableName string) (response *dynamodb.PutItemOutput, err error)
- func (db *Database) Delete(condition map[string]interface{}, tableName string) (response *dynamodb.DeleteItemOutput, err error)
- func (db *Database) FindAll(condition expression.Expression, tableName string) (response *dynamodb.ScanOutput, err error)
- func (db *Database) FindOne(condition map[string]interface{}, tableName string) (response *dynamodb.GetItemOutput, err error)
- func (db *Database) Healthcheck() bool
- type Interface
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Database ¶
type Database struct {
// contains filtered or unexported fields
}
func (*Database) CreateOrUpdate ¶
func (db *Database) CreateOrUpdate(entity interface{}, tableName string) (response *dynamodb.PutItemOutput, err error)
func (*Database) FindAll ¶
func (db *Database) FindAll(condition expression.Expression, tableName string) (response *dynamodb.ScanOutput, err error)
func (*Database) Healthcheck ¶
type Interface ¶
type Interface interface { Healthcheck() bool FindAll(condition expression.Expression, tableName string) (response *dynamodb.ScanOutput, err error) FindOne(condition map[string]interface{}, tableName string) (response *dynamodb.GetItemOutput, err error) CreateOrUpdate(entity interface{}, tableName string) (response *dynamodb.PutItemOutput, err error) Delete(condition map[string]interface{}, tableName string) (response *dynamodb.DeleteItemOutput, err error) }
func NewAdapter ¶
Click to show internal directories.
Click to hide internal directories.