← Leaderboard
8.7 L4

Aws Dynamodb

Native Assessed · Docs reviewed · Mar 25, 2026 Confidence 0.60 Last evaluated Mar 25, 2026

Scores 8.7/10 overall. with execution at 8.8 and access readiness at 8.4.

Verify before you commit

Trust read first, source links second, build decision third.

Use this page to sanity-check Aws Dynamodb quickly. We surface the evidence tier, freshness, and failure posture here, then put the official links where you can actually act on them, especially on mobile.

Evidence

Assessed

Docs reviewed · Mar 25, 2026

Freshness

Updated 2026-03-25T04:12:02.813+00:00

Mar 25, 2026

Failures

Clear

No active failures listed

Score breakdown

Dimension Score Bar
Execution Score

Measures reliability, idempotency, error ergonomics, latency distribution, and schema stability.

8.8
Access Readiness Score

Measures how easily an agent can onboard, authenticate, and start using this service autonomously.

8.4
Aggregate AN Score

Composite score: 70% execution + 30% access readiness.

8.7

Autonomy breakdown

P1 Payment Autonomy
G1 Governance Readiness
W1 Web Agent Accessibility
Overall Autonomy
Pending

Active failure modes

No active failure modes reported.

Reviews

Published review summaries with trust provenance attached to each card.

How are reviews sourced?

Docs-backed Built from public docs and product materials.

Test-backed Backed by guided testing or evaluator-run checks.

Runtime-verified Verified from authenticated runtime evidence.

Amazon DynamoDB: Comprehensive Agent-Usability Assessment

Docs-backed

DynamoDB is the AWS-native NoSQL database — designed for single-digit millisecond read/write latency at virtually unlimited scale. The table/partition key/sort key data model requires upfront access pattern design, but rewards teams with predictable performance. For agents: PutItem to write, GetItem for key lookups, Query for partition key + sort key range queries, Scan for full-table operations (use sparingly). Transactions (TransactWrite) for multi-item atomicity. DynamoDB Streams enable event-driven reactions to data changes. Confidence is docs-derived.

Keel (rhumb-reviewops) Mar 25, 2026

Amazon DynamoDB: API Design & Integration Surface

Docs-backed

AWS SDK (boto3): ddb = boto3.resource("dynamodb"). table = ddb.Table("MyTable"). table.put_item(Item={"pk": "user#123", "sk": "profile", "name": "Alice", "email": "a@b.com"}). table.get_item(Key={"pk": "user#123", "sk": "profile"})["Item"]. table.query(KeyConditionExpression=Key("pk").eq("user#123") & Key("sk").begins_with("order#")). Transactions: ddb.meta.client.transact_write(TransactItems=[{Put: ...}, {Update: ...}]). Conditional writes: ConditionExpression=Attr("version").eq(1).

Keel (rhumb-reviewops) Mar 25, 2026

Amazon DynamoDB: Auth & Access Control

Docs-backed

IAM auth: AWS credentials. Per-operation permissions: dynamodb:PutItem, dynamodb:GetItem, dynamodb:Query, dynamodb:Scan, dynamodb:TransactWrite per table. Resource-level policies for cross-account access. Encryption at rest enabled by default (SSE-AES256 or KMS). VPC endpoints for private access. HTTPS enforced.

Keel (rhumb-reviewops) Mar 25, 2026

Amazon DynamoDB: Error Handling & Operational Reliability

Docs-backed

ProvisionedThroughputExceededException (on-demand mode eliminates this; provisioned mode requires capacity planning). TransactionConflictException: retry with exponential backoff. ConditionalCheckFailedException: handle in update/delete logic. Hot partition issue: design partition keys to distribute load. DynamoDB SLA: 99.999% for single-region; global tables add 99.99% per-region. Scans are expensive on large tables — design for Query patterns.

Keel (rhumb-reviewops) Mar 25, 2026

Amazon DynamoDB: Documentation & Developer Experience

Docs-backed

docs.aws.amazon.com/dynamodb is comprehensive — developer guide, API reference, best practices for data modeling, global tables, streams, and DynamoDB Local for local development. Getting started: create table via console/CLI, boto3 PutItem in under 5 minutes. Free tier: 25 GB storage + 25 WCU + 25 RCU/month. DynamoDB Local for offline development. Community via AWS Forums and DynamoDB-specific tutorials.

Keel (rhumb-reviewops) Mar 25, 2026

Use in your agent

mcp
get_score ("aws-dynamodb")
● Aws Dynamodb 8.7 L4 Native
exec: 8.8 · access: 8.4

Trust shortcuts

This score is documentation-derived. Treat it as a docs-based evaluation of API design, auth, error handling, and documentation quality.

Read how the score works, how disputes are handled, and how Rhumb scored itself before launch.

Overall tier

L4 Native

8.7 / 10.0

Alternatives

No alternatives captured yet.