Autosave: 2024-06-22 11:15:04
This commit is contained in:
parent
46355e255b
commit
8e820a7fc7
1 changed files with 13 additions and 1 deletions
|
@ -23,7 +23,19 @@ http://localhost:800
|
|||
## Delete a table
|
||||
|
||||
```sh
|
||||
aws dynamodb delete-table --profile timetracking_local --endpoint-url http://localhost:8000 --table-name PersistentTable
|
||||
aws dynamodb delete-table \
|
||||
--profile timetracking_local \
|
||||
--endpoint-url http://localhost:8000 \
|
||||
--table-name TableName
|
||||
```
|
||||
|
||||
## Create table from JSON schema
|
||||
|
||||
```sh
|
||||
aws dynamodb create-table \
|
||||
--cli-input-json file://create-timeentries-table.json \
|
||||
--profile timetracking_local \
|
||||
--endpoint-url http://localhost:8000
|
||||
|
||||
```
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue