Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Managed Service for YDB
  • Getting started
  • Access management
      • Setting up AWS tools
      • Working with data through the HTTP interface
        • Overview
        • Creating a table
        • Adding data to a table
        • Reading data from a table
        • Updating data
        • Data selections
        • Deleting the resources you created
    • Common errors when working with the Document API
  • Monitoring metrics
  • Audit Trails events
  • FAQ
  • Public materials
  1. Amazon DynamoDB-compatible Document API
  2. Tools
  3. Working with the AWS CLI
  4. Deleting the resources you created

Deletе the resources you created

Written by
Yandex Cloud
Updated at January 30, 2024

If you no longer need the series table, delete it:

AWS CLI

Run the command by replacing https://your-database-endpoint with the previously prepared Document API endpoint of your DB:

Warning

To work with the AWS CLI from Windows, we recommend using the WSL.

endpoint="https://your-database-endpoint"
aws dynamodb delete-table \
    --table-name series \
    --endpoint $endpoint

Result:

{
   "TableDescription": {
      "AttributeDefinitions": [
            {
               "AttributeName": "series_id",
               "AttributeType": "N"
            },
            {
               "AttributeName": "title",
               "AttributeType": "S"
            }
      ],
      "TableName": "series",
      "KeySchema": [
            {
               "AttributeName": "series_id",
               "KeyType": "HASH"
            },
            {
               "AttributeName": "title",
               "KeyType": "RANGE"
            }
      ],
      "TableStatus": "DELETING",
      "CreationDateTime": "2020-12-27T13:21:10+00:00",
      "TableSizeBytes": 0,
      "ItemCount": 0
   }
}

Was the article helpful?

Previous
Data selections
Next
Overview
Yandex project
© 2025 Yandex.Cloud LLC