assessment_reports
Creates, updates, deletes, gets or lists an assessment_reports resource.
Overview
| Name | assessment_reports |
| Type | Resource |
| Id | aws.inspector.assessment_reports |
Fields
The following fields are returned by SELECT queries:
- get_assessment_report
| Name | Datatype | Description |
|---|---|---|
status | string | Specifies the status of the request to generate an assessment report. (WORK_IN_PROGRESS, FAILED, COMPLETED) |
url | string | Specifies 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_assessment_report | select | region | Produces 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_assessment_report
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
;