deleteDevicePool
inline suspend fun DeviceFarmClient.deleteDevicePool(crossinline block: DeleteDevicePoolRequest.Builder.() -> Unit): DeleteDevicePoolResponse
Deletes a device pool given the pool ARN. Does not allow deletion of curated pools owned by the system.
Samples
fun main() {
//sampleStart
// The following example deletes a specific device pool.
val resp = deviceFarmClient.deleteDevicePool {
arn = "arn:aws:devicefarm:us-west-2::devicepool:123-456-EXAMPLE-GUID"
}
//sampleEnd
}