Skip to main content

sub_check_results

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

Overview

Namesub_check_results
TypeResource
Idaws.ssm_sap.sub_check_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
descriptionstringA description of what the sub-check validates.
idstringThe unique identifier of the sub-check result. (pattern: <code>[{]?[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}[}]?</code>)
namestringThe name of the sub-check.
referencesarrayA list of references or documentation links related to the sub-check.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_sub_check_resultsselectregionLists the sub-check results of a specified 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 sub-check results of a specified configuration check operation.

SELECT
description,
id,
name,
references
FROM aws.ssm_sap.sub_check_results
WHERE region = '{{ region }}' -- required
;