describe_table
Retrieve detailed information about a specific DynamoDB table, including its configuration, indexes, and capacity settings. Supports effective management and monitoring of DynamoDB resources.
Instructions
Gets detailed information about a DynamoDB table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tableName | Yes | Name of the table to describe |
Input Schema (JSON Schema)
{
"properties": {
"tableName": {
"description": "Name of the table to describe",
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}