getUpload
inline suspend fun DeviceFarmClient.getUpload(crossinline block: GetUploadRequest.Builder.() -> Unit): 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
}