coverage_statistics
Creates, updates, deletes, gets or lists a coverage_statistics resource.
Overview
| Name | coverage_statistics |
| Type | Resource |
| Id | aws.inspector2.coverage_statistics |
Fields
The following fields are returned by SELECT queries:
- list_coverage_statistics
| Name | Datatype | Description |
|---|---|---|
count | integer (int64) | The number of resources. |
group_key | string | The key associated with this group (SCAN_STATUS_CODE, SCAN_STATUS_REASON, ACCOUNT_ID, RESOURCE_TYPE, ECR_REPOSITORY_NAME, PROVIDER, PROVIDER_ACCOUNT_ID, PROVIDER_REGION, PROVIDER_ORG_ID) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_coverage_statistics | select | region | Lists Amazon Inspector coverage statistics for your environment. |
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
- list_coverage_statistics
Lists Amazon Inspector coverage statistics for your environment.
SELECT
count,
group_key
FROM aws.inspector2.coverage_statistics
WHERE region = '{{ region }}' -- required
;