findings_statistics
Creates, updates, deletes, gets or lists a findings_statistics resource.
Overview
| Name | findings_statistics |
| Type | Resource |
| Id | aws.accessanalyzer.findings_statistics |
Fields
The following fields are returned by SELECT queries:
- get_findings_statistics
| Name | Datatype | Description |
|---|---|---|
findings_statistics | array | A group of external access or unused access findings statistics. |
last_updated_at | string (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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_findings_statistics | select | region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_findings_statistics
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
;