aws_sdk_evidently/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    ///   - [`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>
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>A structure containing the configuration details of the project.</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}