deleteRun

inline suspend fun DeviceFarmClient.deleteRun(crossinline block: DeleteRunRequest.Builder.() -> Unit): DeleteRunResponse

Deletes the run, given the run ARN.

Deleting this resource does not stop an in-progress run.

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
}