Documentation
¶
Index ¶
- Variables
- type Store
- func (s *Store) Initialize(ctx context.Context) error
- func (s *Store) List(ctx context.Context, provider did.DID, space did.DID, after time.Time, ...) (store.Page[spacediff.DifferenceRecord], error)
- func (s *Store) Put(ctx context.Context, provider did.DID, space did.DID, subscription string, ...) error
- func (s *Store) TransactPut(ctx context.Context, provider did.DID, space did.DID, subscription string, ...) types.TransactWriteItem
Constants ¶
This section is empty.
Variables ¶
View Source
var DynamoSpaceDiffTableProps = struct { KeySchema []types.KeySchemaElement Attributes []types.AttributeDefinition }{ KeySchema: []types.KeySchemaElement{ { AttributeName: aws.String("pk"), KeyType: types.KeyTypeHash, }, { AttributeName: aws.String("sk"), KeyType: types.KeyTypeRange, }, }, Attributes: []types.AttributeDefinition{ { AttributeName: aws.String("pk"), AttributeType: types.ScalarAttributeTypeS, }, { AttributeName: aws.String("sk"), AttributeType: types.ScalarAttributeTypeS, }, }, }
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.