Skip to main content

findings_statistics

Creates, updates, deletes, gets or lists a findings_statistics resource.

Overview

Namefindings_statistics
TypeResource
Idaws.accessanalyzer.findings_statistics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
findings_statisticsarrayA group of external access or unused access findings statistics.
last_updated_atstring (date-time)The time at which the retrieval of the findings statistics was last updated. If the findings statistics have not been previously retrieved for the specified analyzer, this field will not be populated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_findings_statisticsselectregionRetrieves a list of aggregated finding statistics for an external access or unused access analyzer.

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

Retrieves a list of aggregated finding statistics for an external access or unused access analyzer.

SELECT
findings_statistics,
last_updated_at
FROM aws.accessanalyzer.findings_statistics
WHERE region = '{{ region }}' -- required
;