Skip to main content

sub_check_rule_results

Creates, updates, deletes, gets or lists a sub_check_rule_results resource.

Overview

Namesub_check_rule_results
TypeResource
Idaws.ssm_sap.sub_check_rule_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
descriptionstringA description of what the rule validates.
idstringThe 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>)
messagestringA message providing details about the rule result.
metadataobjectAdditional metadata associated with the rule result.
statusstringThe status of the rule result. (PASSED, FAILED, WARNING, INFO, UNKNOWN)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_sub_check_rule_resultsselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;