Complete the code to enable Contributor Insights on a DynamoDB table.
aws dynamodb update-table --table-name MyTable --contributor-insights-specification Enabled=[1]To enable Contributor Insights, the Enabled parameter must be set to true (boolean).
Complete the code to query Contributor Insights metrics for a specific table.
aws dynamodb describe-contributor-insights --table-name [1]The --table-name parameter requires the exact name of your DynamoDB table, such as MyTable.
Fix the error in the command to disable Contributor Insights on a table.
aws dynamodb update-table --table-name MyTable --contributor-insights-specification Enabled=[1]To disable Contributor Insights, set Enabled to the boolean false (all lowercase, no quotes).
Fill both blanks to create a Contributor Insights rule for a DynamoDB index.
aws dynamodb update-contributor-insights --table-name [1] --index-name [2] --contributor-insights-action ENABLE
The command enables Contributor Insights on the OrderIndex of the OrdersTable.
Fill all three blanks to list all Contributor Insights rules for a table and filter by status.
aws dynamodb list-contributor-insights --table-name [1] --filters Status=[2] --max-results [3]
This command lists up to 10 Contributor Insights rules for InventoryTable where the status is ENABLED.