analysis_reports
Creates, updates, deletes, gets or lists an analysis_reports resource.
Overview
| Name | analysis_reports |
| Type | Resource |
| Id | aws.network_firewall.analysis_reports |
Fields
The following fields are returned by SELECT queries:
- list_analysis_reports
| Name | Datatype | Description |
|---|---|---|
analysis_report_id | string | The unique ID of the query that ran when you requested an analysis report. (pattern: <code>\S+</code>) |
analysis_type | string | The type of traffic that will be used to generate a report. (TLS_SNI, HTTP_HOST) |
report_time | string (date-time) | The date and time the analysis report was ran. |
status | string | The status of the analysis report you specify. Statuses include RUNNING, COMPLETED, or FAILED. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_analysis_reports | select | region | Returns a list of all traffic analysis reports generated within the last 30 days. |
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_analysis_reports
Returns a list of all traffic analysis reports generated within the last 30 days.
SELECT
analysis_report_id,
analysis_type,
report_time,
status
FROM aws.network_firewall.analysis_reports
WHERE region = '{{ region }}' -- required
;