getJob

abstract suspend fun getJob(input: GetJobRequest): GetJobResponse

Gets information about a job.

Samples


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