Skip to main content

check_details

Creates, updates, deletes, gets or lists a check_details resource.

Overview

Namecheck_details
TypeResource
Idaws.wellarchitected.check_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
check_detailsarrayThe details about the Trusted Advisor checks related to the Well-Architected best practice.
next_tokenstringThe token to use to retrieve the next set of results. (pattern: <code>[A-Za-z0-9+/=_-]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_check_detailsselectworkload_id, regionList of Trusted Advisor check details by account related to the workload.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
workload_idstring

SELECT examples

List of Trusted Advisor check details by account related to the workload.

SELECT
check_details,
next_token
FROM aws.wellarchitected.check_details
WHERE workload_id = '{{ workload_id }}' -- required
AND region = '{{ region }}' -- required
;