Skip to main content

analysis_reports

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

Overview

Nameanalysis_reports
TypeResource
Idaws.network_firewall.analysis_reports

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
analysis_report_idstringThe unique ID of the query that ran when you requested an analysis report. (pattern: <code>\S+</code>)
analysis_typestringThe type of traffic that will be used to generate a report. (TLS_SNI, HTTP_HOST)
report_timestring (date-time)The date and time the analysis report was ran.
statusstringThe status of the analysis report you specify. Statuses include RUNNING, COMPLETED, or FAILED.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_analysis_reportsselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;