deleteRun
Deletes the run, given the run ARN. You cannot delete a run if it is still active.
You cannot undo this operation.
Samples
fun main() {
//sampleStart
// The following example deletes a specific test run.
val resp = deviceFarmClient.deleteRun {
arn = "arn:aws:devicefarm:us-west-2:123456789101:run:EXAMPLE-GUID-123-456"
}
//sampleEnd
}