:doc:`SsmSap <../../ssm-sap>` / Client / get_configuration_check_operation

*********************************
get_configuration_check_operation
*********************************



.. py:method:: 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 <https://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetConfigurationCheckOperation>`_  


  **Request Syntax**
  ::

    response = client.get_configuration_check_operation(
        OperationId='string'
    )
    
  :type OperationId: string
  :param OperationId: **[REQUIRED]** 

    The ID of the configuration check operation.

    

  
  
  :rtype: 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**
  
  *   :py:class:`SsmSap.Client.exceptions.ValidationException`

  
  *   :py:class:`SsmSap.Client.exceptions.InternalServerException`

  