DynamoDB: Get Table (Guide w/ Code Examples)
Provided by Rafal Wilinski
To get a table using the AWS JavaScript SDK, you can use the describeTable
method. It returns the table's metadata, including its primary key schema, provisioned throughput, and current status. The data returned is passed as an argument to the callback function.
const AWS = require('aws-sdk'); const dynamodb = new AWS.DynamoDB(); const params = { TableName: 'myTable' }; dynamodb.describeTable(params, (err, data) => { if (err) { console.error(err); } else { console.log(data); } });
Similar Code Examples
- DynamoDB: Delete Table
- DynamoDB: Query Date Range
- DynamoDB: BatchGetItem
- DynamoDB: Increment Counter
- DynamoDB: Get Random Item
- DynamoDB: Query Group By
- DynamoDB: Query Items
- DynamoDB: Get Query
- DynamoDB: Delete Multiple Items in Javascript
- DynamoDB BatchWriteItem in Typescript
- DynamoDB: Get Last Inserted Item
- DynamoDB: Get Multiple Items
- DynamoDB: Query KeyConditionExpression
- DynamoDB: Query Count
- DynamoDB: Get Unique Values
Dynobase is a Professional GUI Client for DynamoDB
Start your 7-day free trial today
Product Features
DynamoDB Tools
DynamoDB Info
© 2024 Dynobase