getTest

inline suspend fun DeviceFarmClient.getTest(crossinline block: GetTestRequest.Builder.() -> Unit): GetTestResponse

Gets information about a test.

Samples


fun main() { 
   //sampleStart 
   // The following example gets information about a specific test.
val resp = deviceFarmClient.getTest {
    arn = "arn:aws:devicefarm:us-west-2:123456789101:test:EXAMPLE-GUID-123-456"
} 
   //sampleEnd
}