aws_sdk_devicefarm/client/
get_run.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 [`GetRun`](crate::operation::get_run::builders::GetRunFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`arn(impl Into<String>)`](crate::operation::get_run::builders::GetRunFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::get_run::builders::GetRunFluentBuilder::set_arn):<br>required: **true**<br><p>The run's ARN.</p><br>
7    /// - On success, responds with [`GetRunOutput`](crate::operation::get_run::GetRunOutput) with field(s):
8    ///   - [`run(Option<Run>)`](crate::operation::get_run::GetRunOutput::run): <p>The run to get results from.</p>
9    /// - On failure, responds with [`SdkError<GetRunError>`](crate::operation::get_run::GetRunError)
10    pub fn get_run(&self) -> crate::operation::get_run::builders::GetRunFluentBuilder {
11        crate::operation::get_run::builders::GetRunFluentBuilder::new(self.handle.clone())
12    }
13}