We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fced583 + 090b45f commit c46abdbCopy full SHA for c46abdb
1 file changed
README.md
@@ -1,2 +1,23 @@
1
# delete-dynamodb-items
2
Bulk delete items from a DynamoDB table.
3
+
4
+## Usage
5
6
+_**Warning**: running this command will result in all the items in the specified table to be deleted immediately! There
7
+is no "are you sure?" prompt._
8
9
+```shell
10
+delete-dynamodb-items <table name>
11
+```
12
13
+The program uses the default AWS credential algorithm to determine what IAM entity and region is used. E.g. the
14
+`~/.aws/credentials` file, the `AWS_*` environment variables, etc.
15
16
+## Build
17
18
+Run the following to compile your own copy from source.
19
20
21
+go get -v -t -d ./cmd/
22
+go build -o delete-dynamodb-items -v ./cmd/
23
0 commit comments