listDevices
abstract suspend fun listDevices(input: ListDevicesRequest = ListDevicesRequest { }): ListDevicesResponse
Gets information about unique device types.
Samples
fun main() {
//sampleStart
// The following example returns information about the available devices in a specific project.
val resp = deviceFarmClient.listDevices {
arn = "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456"
}
//sampleEnd
}