deleteAssessmentRun
abstract suspend fun deleteAssessmentRun(input: DeleteAssessmentRunRequest): DeleteAssessmentRunResponse
Deletes the assessment run that is specified by the ARN of the assessment run.
Samples
fun main() {
//sampleStart
// Deletes the assessment run that is specified by the ARN of the assessment run.
inspectorClient.deleteAssessmentRun {
assessmentRunArn = "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T/run/0-11LMTAVe"
}
//sampleEnd
}