aws_sdk_devicefarm/client/
get_project.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 [`GetProject`](crate::operation::get_project::builders::GetProjectFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`arn(impl Into<String>)`](crate::operation::get_project::builders::GetProjectFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::get_project::builders::GetProjectFluentBuilder::set_arn):<br>required: **true**<br><p>The project's ARN.</p><br>
7    /// - On success, responds with [`GetProjectOutput`](crate::operation::get_project::GetProjectOutput) with field(s):
8    ///   - [`project(Option<Project>)`](crate::operation::get_project::GetProjectOutput::project): <p>The project to get information about.</p>
9    /// - On failure, responds with [`SdkError<GetProjectError>`](crate::operation::get_project::GetProjectError)
10    pub fn get_project(&self) -> crate::operation::get_project::builders::GetProjectFluentBuilder {
11        crate::operation::get_project::builders::GetProjectFluentBuilder::new(self.handle.clone())
12    }
13}