aws_sdk_devicefarm/client/get_upload.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`GetUpload`](crate::operation::get_upload::builders::GetUploadFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`arn(impl Into<String>)`](crate::operation::get_upload::builders::GetUploadFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::get_upload::builders::GetUploadFluentBuilder::set_arn):<br>required: **true**<br><p>The upload's ARN.</p><br>
7 /// - On success, responds with [`GetUploadOutput`](crate::operation::get_upload::GetUploadOutput) with field(s):
8 /// - [`upload(Option<Upload>)`](crate::operation::get_upload::GetUploadOutput::upload): <p>An app or a set of one or more tests to upload or that have been uploaded.</p>
9 /// - On failure, responds with [`SdkError<GetUploadError>`](crate::operation::get_upload::GetUploadError)
10 pub fn get_upload(&self) -> crate::operation::get_upload::builders::GetUploadFluentBuilder {
11 crate::operation::get_upload::builders::GetUploadFluentBuilder::new(self.handle.clone())
12 }
13}