← all adapters

dynamodb-style

simulates Amazon DynamoDB API 2012-08-10

restadapter v0.1.01 routes

use it

# add to stunt.yaml
services:
  dynamodb:
    adapter: embedded:dynamodb-style

# then
$ stunt up

The embedded: source extracts this adapter from the binary — no git clone, fully offline.

how to mock the Amazon DynamoDB API locally

Install stunt, paste the service block above into stunt.yaml, run stunt up — then point your client at localhost instead of Amazon DynamoDB API. It works offline, keeps state across requests and restarts, and every response is synthetic: the route shapes, status codes, pagination, and webhook delivery follow the real Amazon DynamoDB API 2012-08-10 surface — the data is fake, the behavior is real.

backing stores

tablesitems

routes (1)

POST/
want more of the Amazon DynamoDB API surface? adapters are YAML + Starlark — the authoring guide covers adding routes, fixtures, and state machines. Open an issue for anything big first, or just file a PR — merged routes ship in the next release.