Skip to main content

configuration_check_operations

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

Overview

Nameconfiguration_check_operations
TypeResource
Idaws.ssm_sap.configuration_check_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
application_idstringThe ID of the application against which the configuration check was performed. (pattern: <code>[\w\d.-]+</code>)
configuration_check_descriptionstringA description of the configuration check that was performed.
configuration_check_idstringThe unique identifier of the configuration check that was performed. (SAP_CHECK_01, SAP_CHECK_02, SAP_CHECK_03)
configuration_check_namestringThe name of the configuration check that was performed.
end_timestring (date-time)The time at which the configuration check operation completed.
idstringThe unique identifier of the configuration check operation. (pattern: <code>[{]?[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}[}]?</code>)
rule_status_countsobjectA summary of all the rule results, showing counts for each status type.
start_timestring (date-time)The time at which the configuration check operation started.
statusstringThe current status of the configuration check operation. (INPROGRESS, SUCCESS, ERROR)
status_messagestringA message providing additional details about the status of the configuration check operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_configuration_check_operationselectregionGets the details of a configuration check operation by specifying the operation ID.
list_configuration_check_operationsselectregionLists the configuration check operations performed 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

Gets the details of a configuration check operation by specifying the operation ID.

SELECT
application_id,
configuration_check_description,
configuration_check_id,
configuration_check_name,
end_time,
id,
rule_status_counts,
start_time,
status,
status_message
FROM aws.ssm_sap.configuration_check_operations
WHERE region = '{{ region }}' -- required
;