getTest

abstract suspend fun getTest(input: GetTestRequest): 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
}