Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > dd7204292d310452063d09b5de9c13b7 > files > 617

aws-cli-docs-1.16.163-1.mga7.noarch.rpm

**To delete a table**

This example deletes the *MusicCollection* table.

Command::

  aws dynamodb delete-table --table-name MusicCollection

Output::

  {
      "TableDescription": {
          "TableStatus": "DELETING", 
          "TableSizeBytes": 0, 
          "ItemCount": 0, 
          "TableName": "MusicCollection", 
          "ProvisionedThroughput": {
              "NumberOfDecreasesToday": 0, 
              "WriteCapacityUnits": 5, 
              "ReadCapacityUnits": 5
          }
      }
  }