dynamoit icon indicating copy to clipboard operation
dynamoit copied to clipboard

A simple AWS DynamoDB viewer

DynamoIt

It's a simple DynamoDB graphical client written on JavaFX.

This client allows easily to view, edit, create, and delete data.

The main idea of the client is to reach the required data in a few clicks.

Features

  • No login required. The client uses AWS cli profiles.
  • Highlights profiles with unique colors
  • Group tables by keywords
  • Automatically detects when to use scan or query requests
  • Supports pagination to view the data.
  • Fast data filtering
  • Highlighting values in the data table
  • Context menu to close all/others tabs
  • Open table in the AWS web console
  • Edit or delete the selected records
  • Import / Export data as json file
  • Search (Ctrl+F) in the edit item dialog
  • Compare two selected documents

Supported filters

Examples are based on "hello world"

Filter name Example
EQUALS hello world
NOT_EQUALS !=hello world
BEGINS_WITH ^hello
CONTAINS ~world
NOT_CONTAINS !~something
EXISTS $
NOT_EXISTS !$

System requirements, building and running

At least Java 17 and maven to build and run the application.

Execute the next command to build

mvn clean package

A jar file with all dependencies will be created in the target/fatJar directory.

To run the application simply execute the command

java -jar target/fatJar/DynamoIt-<version>.jar 

To build a portable bundle you need Java 15 and execute the next command

mvn clean package -Ppackage

Screenshots:

The main screen main screen

The main screen with filters filter screen

The edit item dialog edit screen

The compare dialog compare screen