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: Query JSON
- DynamoDB: Bulk Insert
- DynamoDB: Query KeyConditionExpression
- DynamoDB: Get All Items
- DynamoDB BatchWriteItem in Typescript
- DynamoDB: Get By ID
- DynamoDB: Get List Of Items
- DynamoDB: Query Global Secondary Index in Nodejs
- DynamoDB: Query Items
- DynamoDB: Delete Multiple Items in Javascript
- DynamoDB: Not Between
- DynamoDB: Get Last 10 Records
- DynamoDB: Get Last Inserted Item
- DynamoDB: BatchGetItem
- DynamoDB: Not Begins With
Dynobase is a Professional GUI Client for DynamoDB
First 7 days are. No credit card needed.
Product Features
DynamoDB Tools
DynamoDB Info
© 2024 Dynobase