SsmSap / Client / get_configuration_check_operation
get_configuration_check_operation¶
- SsmSap.Client.get_configuration_check_operation(**kwargs)¶
- Gets the details of a configuration check operation by specifying the operation ID. - See also: AWS API Documentation - Request Syntax- response = client.get_configuration_check_operation( OperationId='string' ) - Parameters:
- OperationId (string) – - [REQUIRED] - The ID of the configuration check operation. 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'ConfigurationCheckOperation': { 'Id': 'string', 'ApplicationId': 'string', 'Status': 'INPROGRESS'|'SUCCESS'|'ERROR', 'StatusMessage': 'string', 'ConfigurationCheckId': 'SAP_CHECK_01'|'SAP_CHECK_02'|'SAP_CHECK_03', 'ConfigurationCheckName': 'string', 'ConfigurationCheckDescription': 'string', 'StartTime': datetime(2015, 1, 1), 'EndTime': datetime(2015, 1, 1), 'RuleStatusCounts': { 'Failed': 123, 'Warning': 123, 'Info': 123, 'Passed': 123, 'Unknown': 123 } } } - Response Structure- (dict) – - ConfigurationCheckOperation (dict) – - Returns the details of a configuration check operation. - Id (string) – - The unique identifier of the configuration check operation. 
- ApplicationId (string) – - The ID of the application against which the configuration check was performed. 
- Status (string) – - The current status of the configuration check operation. 
- StatusMessage (string) – - A message providing additional details about the status of the configuration check operation. 
- ConfigurationCheckId (string) – - The unique identifier of the configuration check that was performed. 
- ConfigurationCheckName (string) – - The name of the configuration check that was performed. 
- ConfigurationCheckDescription (string) – - A description of the configuration check that was performed. 
- StartTime (datetime) – - The time at which the configuration check operation started. 
- EndTime (datetime) – - The time at which the configuration check operation completed. 
- RuleStatusCounts (dict) – - A summary of all the rule results, showing counts for each status type. - Failed (integer) – - The number of rules that failed. 
- Warning (integer) – - The number of rules that returned warnings. 
- Info (integer) – - The number of rules that returned informational results. 
- Passed (integer) – - The number of rules that passed. 
- Unknown (integer) – - The number of rules with unknown status. 
 
 
 
 
 - Exceptions