In DynamoDB, to get a detailed listing of secondary indexes on a table, you can use the ______ action.
BatchGetItem
TableName
DescribeTable
GetItem
Explanations:
The BatchGetItem action is used to retrieve multiple items from one or more tables, not to get details about secondary indexes.
TableName is not an action in DynamoDB; it is an attribute used to specify the name of the table when making requests.
The DescribeTable action provides detailed information about a table, including details about its secondary indexes.
The GetItem action retrieves a single item from a table based on its primary key, but does not provide information about secondary indexes.