Skip to main content

analysis_report_results

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

Overview

Nameanalysis_report_results
TypeResource
Idaws.network_firewall.analysis_report_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
domainstringThe most frequently accessed domains.
first_accessedstring (date-time)The date and time any domain was first accessed (within the last 30 day period).
hitsobjectThe number of attempts made to access a observed domain.
last_accessedstring (date-time)The date and time any domain was last accessed (within the last 30 day period).
protocolstringThe type of traffic captured by the analysis report.
unique_sourcesobjectThe number of unique source IP addresses that connected to a domain.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_analysis_report_resultsselectregionThe results of a COMPLETED analysis report generated with StartAnalysisReport. For more information, see AnalysisTypeReportResult.

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

The results of a COMPLETED analysis report generated with StartAnalysisReport. For more information, see AnalysisTypeReportResult.

SELECT
domain,
first_accessed,
hits,
last_accessed,
protocol,
unique_sources
FROM aws.network_firewall.analysis_report_results
WHERE region = '{{ region }}' -- required
;