cis_scan_results_aggregated_by_checks
Creates, updates, deletes, gets or lists a cis_scan_results_aggregated_by_checks resource.
Overview
| Name | cis_scan_results_aggregated_by_checks |
| Type | Resource |
| Id | aws.inspector2.cis_scan_results_aggregated_by_checks |
Fields
The following fields are returned by SELECT queries:
- list_cis_scan_results_aggregated_by_checks
| Name | Datatype | Description |
|---|---|---|
account_id | string | The account ID for the CIS check. (pattern: <code>\d{12}</code>) |
check_description | string | The description for the CIS check. |
check_id | string | The check ID for the CIS check. |
level | string | The CIS check level. (LEVEL_1, LEVEL_2) |
platform | string | The CIS check platform. |
scan_arn | string | The scan ARN for the CIS check scan ARN. (pattern: <code>arn:aws(-us-gov|-cn)?:inspector2:[-.a-z0-9]{0,20}:\d{12}:owner/(\d{12}|o-[a-z0-9]{10,32})/cis-scan/[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}</code>) |
status_counts | object | The CIS check status counts. |
title_ | string | The CIS check title. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_cis_scan_results_aggregated_by_checks | select | region | Lists scan results aggregated by checks. |
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) |
SELECT examples
- list_cis_scan_results_aggregated_by_checks
Lists scan results aggregated by checks.
SELECT
account_id,
check_description,
check_id,
level,
platform,
scan_arn,
status_counts,
title_
FROM aws.inspector2.cis_scan_results_aggregated_by_checks
WHERE region = '{{ region }}' -- required
;