--- title: 'AWS DynamoDB' description: 'Manage tables and perform CRUD operations on Amazon DynamoDB.' --- # AWS DynamoDB Manage tables and perform CRUD operations on Amazon DynamoDB. | Detail | Value | |---|---| | Category | Database | | Base URL | `https://dynamodb.us-east-1.amazonaws.com` | | Authentication | API Key | | Endpoints | 9 | | Connector key | `aws-dynamodb` | ## Using AWS DynamoDB in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **AWS DynamoDB** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [POST /](./post_database_listtables) | List DynamoDB tables | | [POST /#CreateTable](./post_createtable_database_createtable) | Create a table | | [POST /#DescribeTable](./post_describetable_database_describetable) | Describe a table | | [POST /#PutItem](./post_putitem_database_putitem) | Put an item | | [POST /#GetItem](./post_getitem_database_getitem) | Get an item | | [POST /#Query](./post_query_database_query) | Query items | | [POST /#Scan](./post_scan_database_scan) | Scan items | | [POST /#UpdateItem](./post_updateitem_database_updateitem) | Update an item | | [POST /#DeleteItem](./post_deleteitem_database_deleteitem) | Delete an item | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.