dynamodb
FeaturedAWS DynamoDB NoSQL database for scalable data storage. Use when designing table schemas, writing queries, configuring indexes, managing capacity, implementing single-table design, or troubleshooting performance issues.
Install
Quality Score: 94/100
Skill Content
Details
- Author
- itsmostafa
- Repository
- itsmostafa/aws-agent-skills
- Created
- 7 years ago
- Last Updated
- 4 days ago
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
aws-dynamodb
AWS DynamoDB single-table design, GSI patterns, SDK v3 TypeScript/Python
dynamodb-guideline
Applied to DynamoDB table design, key/index strategy, query patterns, and boto3/aioboto3 connection management. Triggers: DynamoDB table design, PK/SK, GSI, LSI, Single Table Design, access pattern, partition key, sort key, overloading, Query vs Scan, TTL, DynamoDB Streams, boto3, aioboto3, TransactWrite, BatchWrite related tasks.
dynamodb-single-table
Model data in Amazon DynamoDB as one table by default, reading the current AWS guidance before committing to a schema, writing the access patterns down before any keys exist, holding every entity type in one table, overloading generic partition and sort keys across those types, overloading and sparsifying secondary indexes, and splitting items by write rate. Use when designing or reviewing a DynamoDB schema, when a CDK stack is about to gain a second table, when an entity needs a query it has no key for, when application code fetches from two tables to assemble one response, when a Scan or a filter expression appears, when a partition runs hot or a write throttles, and when asked how to model users, orders, events or tenants in DynamoDB.