getDevice

inline suspend fun DeviceFarmClient.getDevice(crossinline block: GetDeviceRequest.Builder.() -> Unit): GetDeviceResponse

Gets information about a unique device type.

Samples


fun main() { 
   //sampleStart 
   // The following example returns information about a specific device.
val resp = deviceFarmClient.getDevice {
    arn = "arn:aws:devicefarm:us-west-2::device:123EXAMPLE"
} 
   //sampleEnd
}