AWS
DynamoDB
Every DynamoDB table with capacity, throttles, item count, size and feature flags (PITR, TTL).
Live preview — demo data
What this pane shows
All DynamoDB tables in the account with their billing mode (provisioned versus on-demand), current RCU/WCU consumption against provisioned capacity, any throttle events in the last hour, total item count and on-disk size. Feature badges call out Point-in-Time Recovery, TTL, Global Secondary Indexes and customer-managed encryption.
Key use cases
- Catch a table being throttled (lost writes or 503s in the app).
- Identify provisioned tables that should switch to on-demand (or vice versa).
- Audit which production tables lack PITR.
- Plan capacity adjustments before a launch event.
How to embed
lp.js is the single-entry loader: it injects the shared LightPane runtime
(and sd-embed.css) once per page. Add this pane's own stylesheet and script;
the pane mounts itself wherever the matching <div> is in the DOM.
<!-- In <head> — this pane's stylesheet -->
<link rel="stylesheet" href="https://lightpane.io/_pane-tests/aws/dynamodb/dynamodb.css">
<!-- Your access key (inline, or set window.lpEmbed.accessKey from your own JS) -->
<script>window.lpEmbed = { accessKey: "<your-access-key>" };</script>
<!-- Where the pane should appear -->
<div class="lp-dynamodb-panel" data-lp-account="<your-account-alias>"></div>
<!-- Before </body> — shared loader + this pane's script -->
<script src="https://lightpane.io/embed/lp.js"></script>
<script src="https://lightpane.io/_pane-tests/aws/dynamodb/dynamodb.js" defer></script>
Tier
Available on Explorer and above.
Build notes
Mock-only at the moment — live-wiring tracked in the roadmap.