Documentation ¶
Overview ¶
Package table manages all of the Dynamo calls (query, scan, get, write, etc).
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type API ¶
type API interface { Get() (*models.GeneralSettings, error) Update(settings *models.GeneralSettings) (*models.GeneralSettings, error) }
API defines the interface for the table which can be used for mocking.
type DynamoItem ¶
type DynamoItem = map[string]*dynamodb.AttributeValue
DynamoItem is a type alias for the item format expected by the Dynamo SDK.
type OrganizationsTable ¶
type OrganizationsTable struct { Name *string // contains filtered or unexported fields }
OrganizationsTable encapsulates a connection to the Dynamo table.
func New ¶
func New(tableName string, sess *session.Session) *OrganizationsTable
New creates a new Dynamo client which talks to the given table name.
func (*OrganizationsTable) Get ¶
func (table *OrganizationsTable) Get() (*models.GeneralSettings, error)
Get retrieves account details from the table.
func (*OrganizationsTable) Update ¶
func (table *OrganizationsTable) Update(settings *models.GeneralSettings) (*models.GeneralSettings, error)
Update updates account details and returns the updated item
Click to show internal directories.
Click to hide internal directories.