Skip to main content

assessment_reports

Creates, updates, deletes, gets or lists an assessment_reports resource.

Overview

Nameassessment_reports
TypeResource
Idaws.inspector.assessment_reports

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
statusstringSpecifies the status of the request to generate an assessment report. (WORK_IN_PROGRESS, FAILED, COMPLETED)
urlstringSpecifies the URL where you can find the generated assessment report. This parameter is only returned if the report is successfully generated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_assessment_reportselectregionProduces an assessment report that includes detailed and comprehensive results of a specified assessment run.

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

Produces an assessment report that includes detailed and comprehensive results of a specified assessment run.

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