check_details
Creates, updates, deletes, gets or lists a check_details resource.
Overview
| Name | check_details |
| Type | Resource |
| Id | aws.wellarchitected.check_details |
Fields
The following fields are returned by SELECT queries:
- list_check_details
| Name | Datatype | Description |
|---|---|---|
check_details | array | The details about the Trusted Advisor checks related to the Well-Architected best practice. |
next_token | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_check_details | select | workload_id, region | List 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
workload_id | string |
SELECT examples
- list_check_details
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
;