aws_sdk_devicefarm/client/
get_run.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetRun`](crate::operation::get_run::builders::GetRunFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    /// - On success, responds with [`GetRunOutput`](crate::operation::get_run::GetRunOutput) with field(s):
    ///   - [`run(Option<Run>)`](crate::operation::get_run::GetRunOutput::run): <p>The run to get results from.</p>
    /// - On failure, responds with [`SdkError<GetRunError>`](crate::operation::get_run::GetRunError)
    pub fn get_run(&self) -> crate::operation::get_run::builders::GetRunFluentBuilder {
        crate::operation::get_run::builders::GetRunFluentBuilder::new(self.handle.clone())
    }
}