configuration_check_definitions
Creates, updates, deletes, gets or lists a configuration_check_definitions resource.
Overview
| Name | configuration_check_definitions |
| Type | Resource |
| Id | aws.ssm_sap.configuration_check_definitions |
Fields
The following fields are returned by SELECT queries:
- list_configuration_check_definitions
| Name | Datatype | Description |
|---|---|---|
applicable_application_types | array | The list of SSMSAP application types that this configuration check can be evaluated against. |
description | string | A description of what the configuration check validates. |
id | string | The unique identifier of the configuration check. (SAP_CHECK_01, SAP_CHECK_02, SAP_CHECK_03) |
name | string | The name of the configuration check. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_configuration_check_definitions | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_configuration_check_definitions
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
;