:doc:`IoT <../../iot>` / Client / list_audit_mitigation_actions_tasks

***********************************
list_audit_mitigation_actions_tasks
***********************************



.. py:method:: IoT.Client.list_audit_mitigation_actions_tasks(**kwargs)

  

  Gets a list of audit mitigation action tasks that match the specified filters.

   

  Requires permission to access the `ListAuditMitigationActionsTasks <https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions>`__ action.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iot-2015-05-28/ListAuditMitigationActionsTasks>`_  


  **Request Syntax**
  ::

    response = client.list_audit_mitigation_actions_tasks(
        auditTaskId='string',
        findingId='string',
        taskStatus='IN_PROGRESS'|'COMPLETED'|'FAILED'|'CANCELED',
        maxResults=123,
        nextToken='string',
        startTime=datetime(2015, 1, 1),
        endTime=datetime(2015, 1, 1)
    )
    
  :type auditTaskId: string
  :param auditTaskId: 

    Specify this filter to limit results to tasks that were applied to results for a specific audit.

    

  
  :type findingId: string
  :param findingId: 

    Specify this filter to limit results to tasks that were applied to a specific audit finding.

    

  
  :type taskStatus: string
  :param taskStatus: 

    Specify this filter to limit results to tasks that are in a specific state.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to return at one time. The default is 25.

    

  
  :type nextToken: string
  :param nextToken: 

    The token for the next set of results.

    

  
  :type startTime: datetime
  :param startTime: **[REQUIRED]** 

    Specify this filter to limit results to tasks that began on or after a specific date and time.

    

  
  :type endTime: datetime
  :param endTime: **[REQUIRED]** 

    Specify this filter to limit results to tasks that were completed or canceled on or before a specific date and time.

    

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

    
    ::

      {
          'tasks': [
              {
                  'taskId': 'string',
                  'startTime': datetime(2015, 1, 1),
                  'taskStatus': 'IN_PROGRESS'|'COMPLETED'|'FAILED'|'CANCELED'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **tasks** *(list) --* 

        The collection of audit mitigation tasks that matched the filter criteria.

        
        

        - *(dict) --* 

          Information about an audit mitigation actions task that is returned by ``ListAuditMitigationActionsTasks``.

          
          

          - **taskId** *(string) --* 

            The unique identifier for the task.

            
          

          - **startTime** *(datetime) --* 

            The time at which the audit mitigation actions task was started.

            
          

          - **taskStatus** *(string) --* 

            The current state of the audit mitigation actions task.

            
      
    
      

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

        The token for the next set of results.

        
  
  **Exceptions**
  
  *   :py:class:`IoT.Client.exceptions.InvalidRequestException`

  
  *   :py:class:`IoT.Client.exceptions.ThrottlingException`

  
  *   :py:class:`IoT.Client.exceptions.InternalFailureException`

  