Database Reference
In-Depth Information
DeleteTable
One of the simplest DynamoDB REST API requests is to delete a table. To delete a table
named Tbl_Book , the request body should have the following JSON:
{
"TableName": "Tbl_Book"
}
The following is the response to the DeleteTable request, displaying information about
the table being deleted:
{
"TableDescription": {
"ItemCount": 5,
"ProvisionedThroughput": {
"NumberOfDecreasesToday": 0,
"ReadCapacityUnits": 5,"WriteCapacityUnits": 5},
"TableName": "Tbl_Book","TableSizeBytes": 0,
"TableStatus": "DELETING"}
}
Search WWH ::




Custom Search