aggregate_conformance_pack_compliance_summaries
Creates, updates, deletes, gets or lists an aggregate_conformance_pack_compliance_summaries resource.
Overview
| Name | aggregate_conformance_pack_compliance_summaries |
| Type | Resource |
| Id | aws.config.aggregate_conformance_pack_compliance_summaries |
Fields
The following fields are returned by SELECT queries:
- get_aggregate_conformance_pack_compliance_summary
| Name | Datatype | Description |
|---|---|---|
aggregate_conformance_pack_compliance_summaries | array | Returns a list of AggregateConformancePackComplianceSummary object. |
group_by_key | string | Groups the result based on Amazon Web Services account ID or Amazon Web Services Region. |
next_token | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_aggregate_conformance_pack_compliance_summary | select | region | Returns the count of compliant and noncompliant conformance packs across all Amazon Web Services accounts and Amazon Web Services Regions in an aggregator. You can filter based on Amazon Web Services account ID or Amazon Web Services Region. 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_aggregate_conformance_pack_compliance_summary
Returns the count of compliant and noncompliant conformance packs across all Amazon Web Services accounts and Amazon Web Services Regions in an aggregator. You can filter based on Amazon Web Services account ID or Amazon Web Services Region. The results can return an empty result page, but if you have a nextToken, the results are displayed on the next page.
SELECT
aggregate_conformance_pack_compliance_summaries,
group_by_key,
next_token
FROM aws.config.aggregate_conformance_pack_compliance_summaries
WHERE region = '{{ region }}' -- required
;