conformance_pack_compliance_scores
Creates, updates, deletes, gets or lists a conformance_pack_compliance_scores resource.
Overview
| Name | conformance_pack_compliance_scores |
| Type | Resource |
| Id | aws.config.conformance_pack_compliance_scores |
Fields
The following fields are returned by SELECT queries:
- list_conformance_pack_compliance_scores
| Name | Datatype | Description |
|---|---|---|
conformance_pack_compliance_scores | array | A list of ConformancePackComplianceScore objects. |
next_token | string | The nextToken string that you can 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 |
|---|---|---|---|---|
list_conformance_pack_compliance_scores | select | region | Returns a list of conformance pack compliance scores. A compliance score is the percentage of the number of compliant rule-resource combinations in a conformance pack compared to the number of total possible rule-resource combinations in the conformance pack. This metric provides you with a high-level view of the compliance state of your conformance packs. You can use it to identify, investigate, and understand the level of compliance in your conformance packs. Conformance packs with no evaluation results will have a compliance score of INSUFFICIENT_DATA. |
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_conformance_pack_compliance_scores
Returns a list of conformance pack compliance scores. A compliance score is the percentage of the number of compliant rule-resource combinations in a conformance pack compared to the number of total possible rule-resource combinations in the conformance pack. This metric provides you with a high-level view of the compliance state of your conformance packs. You can use it to identify, investigate, and understand the level of compliance in your conformance packs. Conformance packs with no evaluation results will have a compliance score of INSUFFICIENT_DATA.
SELECT
conformance_pack_compliance_scores,
next_token
FROM aws.config.conformance_pack_compliance_scores
WHERE region = '{{ region }}' -- required
;