check_summaries
Creates, updates, deletes, gets or lists a check_summaries resource.
Overview
| Name | check_summaries |
| Type | Resource |
| Id | aws.wellarchitected.check_summaries |
Fields
The following fields are returned by SELECT queries:
- list_check_summaries
| Name | Datatype | Description |
|---|---|---|
check_summaries | array | List of Trusted Advisor summaries 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_summaries | select | workload_id, region | List of Trusted Advisor checks summarized for all accounts 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_summaries
List of Trusted Advisor checks summarized for all accounts related to the workload.
SELECT
check_summaries,
next_token
FROM aws.wellarchitected.check_summaries
WHERE workload_id = '{{ workload_id }}' -- required
AND region = '{{ region }}' -- required
;