getUpload

abstract suspend fun getUpload(input: GetUploadRequest): GetUploadResponse

Gets information about an upload.

Samples


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