Expand description
Deez is a DynamoDB abstraction for implementing Single Table Design easily,
inspired by ElectroDB
.
Macros§
- batch_
write - Convenience macro for batch write operations.
- create
- Convenience macro for put with ConditionExpression parameter to ensure records are only “created” and not overwritten when inserting new records into the table.
- remove
- Convenience macro for delete with ConditionExpression that the item being deleted exists.
- vec_
from_ query - Convenience macro for converting a query result back to
Vec<T>
.