DynamoDB
Notes
Each item has a unique primary key and any number of attributes.
Scanning for an item means looking through every item in a table thus it is less efficient than query search.
Table is a collection of items, and each item is a collection of attributes.
Links
Awesome DynamoDB - List of resources for learning about modeling, operating, and using Amazon DynamoDB.
dynamo - Dead-simple AWS DynamoDB CLI.
DQL - SQL-ish language for DynamoDB.
Dynobase - Professional GUI Client for DynamoDB.
dynomite - Make your rust types fit DynamoDB and visa versa.
PynamoDB - Pythonic interface to Amazon's DynamoDB.
DynamoDB, explained - Primer on the DynamoDB NoSQL database.
dynamit-cli - DynamoDB Migrations Tool CLI.
AsyncIO DynamoDB - Asynchronous, fast, pythonic DynamoDB Client. (Docs)
Rotary - ORM-like query library for DynamoDB.
dynein - DynamoDB CLI written in Rust.
graphql-ttl-transformer - Enable DynamoDB's time-to-live feature to auto-delete old entries in your AWS Amplify API.
jest-dynalite - Jest preset to run Dynalite (DynamoDB local) per test runner.
DynamoDB OneTable - Access and management for one table designs with NodeJS.
Serverless DynamoDB Local Plugin - Allows to run DynamoDB locally for serverless.
Last updated