Complete the code to check Trusted Advisor checks using AWS CLI.
aws support describe-trusted-advisor-checks --language [1]The AWS CLI command requires the language code, such as 'en' for English, to list Trusted Advisor checks.
Complete the code to get the Trusted Advisor check result by check ID.
aws support describe-trusted-advisor-check-result --check-id [1] --language enThe check ID is a unique identifier string for each Trusted Advisor check, usually a UUID format.
Fix the error in the AWS CLI command to refresh Trusted Advisor checks.
aws support refresh-trusted-advisor-check --check-id [1]The refresh command requires the check ID or 'all' to refresh all checks.
Fill both blanks to create a JSON filter for Trusted Advisor checks with status 'error'.
{"checks": [[1]], "status": "[2]"}The JSON filter needs a valid check ID string and the status 'error' to filter checks with errors.
Fill all three blanks to create a Python dictionary for filtering Trusted Advisor checks by category and status.
filter_criteria = {"category": "[1]", "status": "[2]", "checkId": "[3]"}The category is 'cost_optimizing', status is 'error', and checkId is a valid UUID string.