Skip to main content

configuration_check_definitions

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

Overview

Nameconfiguration_check_definitions
TypeResource
Idaws.ssm_sap.configuration_check_definitions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
applicable_application_typesarrayThe list of SSMSAP application types that this configuration check can be evaluated against.
descriptionstringA description of what the configuration check validates.
idstringThe unique identifier of the configuration check. (SAP_CHECK_01, SAP_CHECK_02, SAP_CHECK_03)
namestringThe name of the configuration check.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_configuration_check_definitionsselectregionLists all configuration check types supported by AWS Systems Manager for SAP.

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 all configuration check types supported by AWS Systems Manager for SAP.

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