conformance_pack_compliances
Creates, updates, deletes, gets or lists a conformance_pack_compliances resource.
Overview
| Name | conformance_pack_compliances |
| Type | Resource |
| Id | aws.config.conformance_pack_compliances |
Fields
The following fields are returned by SELECT queries:
- describe_conformance_pack_compliance
| Name | Datatype | Description |
|---|---|---|
compliance_type | string | Compliance of the Config rule. (COMPLIANT, NON_COMPLIANT, INSUFFICIENT_DATA) |
config_rule_name | string | Name of the Config rule. (pattern: <code>.\S.</code>) |
controls | array | Controls for the conformance pack. A control is a process to prevent or detect problems while meeting objectives. A control can align with a specific compliance regime or map to internal controls defined by an organization. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_conformance_pack_compliance | select | region | Returns compliance details for each rule in that conformance pack. You must provide exact rule names. |
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
- describe_conformance_pack_compliance
Returns compliance details for each rule in that conformance pack. You must provide exact rule names.
SELECT
compliance_type,
config_rule_name,
controls
FROM aws.config.conformance_pack_compliances
WHERE region = '{{ region }}' -- required
;