dynamodb_describe_ttl
Retrieve Time-to-Live (TTL) settings for a specified DynamoDB table using the AWS MCP Server. Input the table name to access TTL configuration details.
Instructions
Get the TTL settings for a table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
table_name | Yes | Name of the DynamoDB table |
Input Schema (JSON Schema)
{
"properties": {
"table_name": {
"description": "Name of the DynamoDB table",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}