sub_check_rule_results
Creates, updates, deletes, gets or lists a sub_check_rule_results resource.
Overview
| Name | sub_check_rule_results |
| Type | Resource |
| Id | aws.ssm_sap.sub_check_rule_results |
Fields
The following fields are returned by SELECT queries:
- list_sub_check_rule_results
| Name | Datatype | Description |
|---|---|---|
description | string | A description of what the rule validates. |
id | string | The unique identifier of the rule result. (pattern: <code>[{]?[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}[}]?</code>) |
message | string | A message providing details about the rule result. |
metadata | object | Additional metadata associated with the rule result. |
status | string | The status of the rule result. (PASSED, FAILED, WARNING, INFO, UNKNOWN) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_sub_check_rule_results | select | region | Lists the rules of a specified sub-check belonging to a configuration check operation. |
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_sub_check_rule_results
Lists the rules of a specified sub-check belonging to a configuration check operation.
SELECT
description,
id,
message,
metadata,
status
FROM aws.ssm_sap.sub_check_rule_results
WHERE region = '{{ region }}' -- required
;