Skip to main content

aggregate_config_rule_compliance_summaries

Creates, updates, deletes, gets or lists an aggregate_config_rule_compliance_summaries resource.

Overview

Nameaggregate_config_rule_compliance_summaries
TypeResource
Idaws.config.aggregate_config_rule_compliance_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
aggregate_compliance_countsarrayReturns a list of AggregateComplianceCounts object.
group_by_keystringGroups the result based on ACCOUNT_ID or AWS_REGION.
next_tokenstringThe nextToken string returned on a previous page that you use to get the next page of results in a paginated response.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_aggregate_config_rule_compliance_summaryselectregionReturns the number of compliant and noncompliant rules for one or more accounts and regions in an aggregator. The results can return an empty result page, but if you have a nextToken, the results are displayed on the next page.

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

Returns the number of compliant and noncompliant rules for one or more accounts and regions in an aggregator. The results can return an empty result page, but if you have a nextToken, the results are displayed on the next page.

SELECT
aggregate_compliance_counts,
group_by_key,
next_token
FROM aws.config.aggregate_config_rule_compliance_summaries
WHERE region = '{{ region }}' -- required
;