listDevicePools

Gets information about device pools.

Samples

import aws.sdk.kotlin.services.devicefarm.model.DevicePoolType

fun main() { 
   //sampleStart 
   // The following example returns information about the private device pools in a specific project.
val resp = deviceFarmClient.listDevicePools {
    arn = "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456"
    type = DevicePoolType.fromValue("PRIVATE")
} 
   //sampleEnd
}