Skip to main content

cis_scan_reports

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

Overview

Namecis_scan_reports
TypeResource
Idaws.inspector2.cis_scan_reports

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
statusstringThe status. (SUCCEEDED, FAILED, IN_PROGRESS)
urlstringThe URL where a PDF or CSV of the CIS scan report can be downloaded.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_cis_scan_reportselectregionRetrieves a CIS scan report.

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)

SELECT examples

Retrieves a CIS scan report.

SELECT
status,
url
FROM aws.inspector2.cis_scan_reports
WHERE region = '{{ region }}' -- required
;