:doc:`SSMIncidents <../../ssm-incidents>` / Client / list_incident_findings

**********************
list_incident_findings
**********************



.. py:method:: SSMIncidents.Client.list_incident_findings(**kwargs)

  

  Retrieves a list of the IDs of findings, plus their last modified times, that have been identified for a specified incident. A finding represents a recent application environment change made by an CloudFormation stack creation or update or an CodeDeploy deployment that can be investigated as a potential cause of the incident.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/ListIncidentFindings>`_  


  **Request Syntax**
  ::

    response = client.list_incident_findings(
        incidentRecordArn='string',
        maxResults=123,
        nextToken='string'
    )
    
  :type incidentRecordArn: string
  :param incidentRecordArn: **[REQUIRED]** 

    The Amazon Resource Name (ARN) of the incident for which you want to view associated findings.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of findings to retrieve per call.

    

  
  :type nextToken: string
  :param nextToken: 

    The pagination token for the next set of items to return. (You received this token from a previous call.)

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'findings': [
              {
                  'id': 'string',
                  'lastModifiedTime': datetime(2015, 1, 1)
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **findings** *(list) --* 

        A list of findings that represent deployments that might be the potential cause of the incident.

        
        

        - *(dict) --* 

          Identifying information about the finding.

          
          

          - **id** *(string) --* 

            The ID of the finding.

            
          

          - **lastModifiedTime** *(datetime) --* 

            The timestamp for when the finding was last updated.

            
      
    
      

      - **nextToken** *(string) --* 

        The pagination token to use when requesting the next set of items. If there are no additional items to return, the string is null.

        
  
  **Exceptions**
  
  *   :py:class:`SSMIncidents.Client.exceptions.ThrottlingException`

  
  *   :py:class:`SSMIncidents.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`SSMIncidents.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`SSMIncidents.Client.exceptions.ValidationException`

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

  