finding_statistics
Creates, updates, deletes, gets or lists a finding_statistics resource.
Overview
| Name | finding_statistics |
| Type | Resource |
| Id | aws.macie2.finding_statistics |
Fields
The following fields are returned by SELECT queries:
- get_finding_statistics
| Name | Datatype | Description |
|---|---|---|
counts_by_group | array | An array of objects, one for each group of findings that matches the filter criteria specified in the request. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_finding_statistics | select | region | Retrieves (queries) aggregated statistical data about findings. |
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_finding_statistics
Retrieves (queries) aggregated statistical data about findings.
SELECT
counts_by_group
FROM aws.macie2.finding_statistics
WHERE region = '{{ region }}' -- required
;