dynamodb

Installation
SKILL.md

Amazon DynamoDB

DynamoDB is a fully managed, serverless, key-value NoSQL database designed to run high-performance applications at any scale (Single-digit millisecond latency).

When to Use

  • Serverless Apps: The default DB for AWS Lambda.
  • Infinite Scaling: Handles petabytes of data without maintenance.
  • Shopping Carts / Sessions: High throughput, simple key access.

Quick Start (AWS SDK v3)

import { DynamoDBClient, PutItemCommand } from "@aws-sdk/client-dynamodb";
Installs
3
GitHub Stars
10
First Seen
Feb 10, 2026
dynamodb — g1joshi/agent-skills