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 [`GetProject`](crate::operation::get_project::builders::GetProjectFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`project(impl Into<String>)`](crate::operation::get_project::builders::GetProjectFluentBuilder::project) / [`set_project(Option<String>)`](crate::operation::get_project::builders::GetProjectFluentBuilder::set_project):<br>required: **true**<br><p>The name or ARN of the project that you want to see the details of.</p><br>
    /// - On success, responds with [`GetProjectOutput`](crate::operation::get_project::GetProjectOutput) with field(s):
    ///   - [`project(Option<Project>)`](crate::operation::get_project::GetProjectOutput::project): <p>A structure containing the configuration details of the project.</p>
    /// - On failure, responds with [`SdkError<GetProjectError>`](crate::operation::get_project::GetProjectError)
    pub fn get_project(&self) -> crate::operation::get_project::builders::GetProjectFluentBuilder {
        crate::operation::get_project::builders::GetProjectFluentBuilder::new(self.handle.clone())
    }
}