
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
github.com/kamilturek/ddx
ddx
is a CLI tool designed to help you quickly and conveniently view the key
schemas of your DynamoDB tables and their indexes. With ddx
, you can get a
summary of the partition keys and sort keys for your DynamoDB tables, with
support for various output formats.
go install github.com/kamilturek/ddx
$ ddx --help
A tool for quickly viewing your DynamoDB table and index key schemas
Usage:
ddx [flags]
Flags:
-a, --all list all tables
-f, --format string output format, available: "text", "json" (default "text")
-h, --help help for ddx
-l, --limit int maximum number of tables listed (default -1)
-t, --table-name string table name whose key schema should be shown
-v, --version version for ddx
View key schema for a specific table:
$ ddx --table-name Users
Table Name: Users
Table Type: BASE
Parition Key: UserID
View key schemas for all tables in text format:
$ ddx --all
Table Name: Books
Table Type: BASE
Parition Key: AuthorID
Sort Key: BookID
Table Name: BooksLSI
Table Type: LSI
Partition Key: AuthorID
Sort Key: PublisherID
Table Name: BooksGSI
Table Type: GSI
Partition Key: BookID
Table Name: Users
Table Type: BASE
Parition Key: UserID
Output key schemas in JSON format:
$ ddx --all --format json
[
{
"TableName": "Books",
"TableType": "BASE",
"PartitionKey": "AuthorID",
"SortKey": "BookID"
},
{
"TableName": "BooksLSI",
"TableType": "BASE",
"PartitionKey": "AuthorID",
"SortKey": "PublisherID"
},
{
"TableName": "BooksGSI",
"TableType": "BASE",
"PartitionKey": "BookID"
},
{
"TableName": "Users",
"TableType": "BASE",
"PartitionKey": "UserID"
}
]
ddx
is open-sourced software licensed under the MIT license.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.