:doc:`Inspector <../../inspector>` / Client / delete_assessment_run

*********************
delete_assessment_run
*********************



.. py:method:: Inspector.Client.delete_assessment_run(**kwargs)

  

  Deletes the assessment run that is specified by the ARN of the assessment run.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/inspector-2016-02-16/DeleteAssessmentRun>`_  


  **Request Syntax**
  ::

    response = client.delete_assessment_run(
        assessmentRunArn='string'
    )
    
  :type assessmentRunArn: string
  :param assessmentRunArn: **[REQUIRED]** 

    The ARN that specifies the assessment run that you want to delete.

    

  
  
  :returns: None
  **Exceptions**
  
  *   :py:class:`Inspector.Client.exceptions.InternalException`

  
  *   :py:class:`Inspector.Client.exceptions.InvalidInputException`

  
  *   :py:class:`Inspector.Client.exceptions.AssessmentRunInProgressException`

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

  
  *   :py:class:`Inspector.Client.exceptions.NoSuchEntityException`

  
  *   :py:class:`Inspector.Client.exceptions.ServiceTemporarilyUnavailableException`

  

  **Examples**

  Deletes the assessment run that is specified by the ARN of the assessment run.
  ::

    response = client.delete_assessment_run(
        assessmentRunArn='arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T/run/0-11LMTAVe',
    )
    
    print(response)

  
  Expected Output:
  ::

    {
        'ResponseMetadata': {
            '...': '...',
        },
    }

  