configuration_check_operations
Creates, updates, deletes, gets or lists a configuration_check_operations resource.
Overview
| Name | configuration_check_operations |
| Type | Resource |
| Id | aws.ssm_sap.configuration_check_operations |
Fields
The following fields are returned by SELECT queries:
- get_configuration_check_operation
- list_configuration_check_operations
| Name | Datatype | Description |
|---|---|---|
application_id | string | The ID of the application against which the configuration check was performed. (pattern: <code>[\w\d.-]+</code>) |
configuration_check_description | string | A description of the configuration check that was performed. |
configuration_check_id | string | The unique identifier of the configuration check that was performed. (SAP_CHECK_01, SAP_CHECK_02, SAP_CHECK_03) |
configuration_check_name | string | The name of the configuration check that was performed. |
end_time | string (date-time) | The time at which the configuration check operation completed. |
id | string | The 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_counts | object | A summary of all the rule results, showing counts for each status type. |
start_time | string (date-time) | The time at which the configuration check operation started. |
status | string | The current status of the configuration check operation. (INPROGRESS, SUCCESS, ERROR) |
status_message | string | A message providing additional details about the status of the configuration check operation. |
| Name | Datatype | Description |
|---|---|---|
application_id | string | The ID of the application against which the configuration check was performed. (pattern: <code>[\w\d.-]+</code>) |
configuration_check_description | string | A description of the configuration check that was performed. |
configuration_check_id | string | The unique identifier of the configuration check that was performed. (SAP_CHECK_01, SAP_CHECK_02, SAP_CHECK_03) |
configuration_check_name | string | The name of the configuration check that was performed. |
end_time | string (date-time) | The time at which the configuration check operation completed. |
id | string | The 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_counts | object | A summary of all the rule results, showing counts for each status type. |
start_time | string (date-time) | The time at which the configuration check operation started. |
status | string | The current status of the configuration check operation. (INPROGRESS, SUCCESS, ERROR) |
status_message | string | A message providing additional details about the status of the configuration check operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_configuration_check_operation | select | region | Gets the details of a configuration check operation by specifying the operation ID. | |
list_configuration_check_operations | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_configuration_check_operation
- list_configuration_check_operations
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
;
Lists the configuration check operations performed by AWS Systems Manager for SAP.
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
;