Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Managed Service for YDB
  • Getting started
  • Access management
      • Setting up AWS tools
      • Data operations through the HTTP interface
        • Overview
        • Creating a table
        • Adding data to a table
        • Reading data from a table
        • Updating data
        • Data selection
        • Deleting the resources you created
    • Common errors when using 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

Deleting the resources you created

Written by
Yandex Cloud
Updated at April 24, 2026

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

AWS CLI

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

Warning

To work with the AWS CLI on 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 selection
Next
Overview
© 2026 Direct Cursus Technology L.L.C.