DynamoDB

Connection

In the Connect modal, provide your AWS Region, Access Key ID, and Secret Access Key. You can also provide a custom endpoint URL if you are using DynamoDB Local.

Read-only roles

Create an IAM Policy with dynamodb:Scan and dynamodb:ListTables permissions.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "dynamodb:Scan",
        "dynamodb:ListTables"
      ],
      "Resource": "*"
    }
  ]
}

What the app fetches

  • The app uses ListTablesCommand to discover your tables.
  • Scans are strictly capped at 100,000 rows internally to prevent massive read costs on your AWS bill.
Last updated: Jul 30 2026