aws-dynamodb
Installation
SKILL.md
AWS DynamoDB
Query and manage DynamoDB tables.
List tables
aws dynamodb list-tables --output table
Describe table
aws dynamodb describe-table --table-name my-table | jq '{TableName: .Table.TableName, Status: .Table.TableStatus, ItemCount: .Table.ItemCount, SizeBytes: .Table.TableSizeBytes, KeySchema: .Table.KeySchema, BillingMode: .Table.BillingModeSummary.BillingMode}'