Skip to main content

coverage_statistics

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

Overview

Namecoverage_statistics
TypeResource
Idaws.inspector2.coverage_statistics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
countinteger (int64)The number of resources.
group_keystringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_coverage_statisticsselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists Amazon Inspector coverage statistics for your environment.

SELECT
count,
group_key
FROM aws.inspector2.coverage_statistics
WHERE region = '{{ region }}' -- required
;