aws_sdk_codecatalyst/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 /// - [`space_name(impl Into<String>)`](crate::operation::get_project::builders::GetProjectFluentBuilder::space_name) / [`set_space_name(Option<String>)`](crate::operation::get_project::builders::GetProjectFluentBuilder::set_space_name):<br>required: **true**<br><p>The name of the space.</p><br>
7 /// - [`name(impl Into<String>)`](crate::operation::get_project::builders::GetProjectFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_project::builders::GetProjectFluentBuilder::set_name):<br>required: **true**<br><p>The name of the project in the space.</p><br>
8 /// - On success, responds with [`GetProjectOutput`](crate::operation::get_project::GetProjectOutput) with field(s):
9 /// - [`space_name(Option<String>)`](crate::operation::get_project::GetProjectOutput::space_name): <p>The name of the space.</p>
10 /// - [`name(String)`](crate::operation::get_project::GetProjectOutput::name): <p>The name of the project in the space.</p>
11 /// - [`display_name(Option<String>)`](crate::operation::get_project::GetProjectOutput::display_name): <p>The friendly name of the project displayed to users in Amazon CodeCatalyst.</p>
12 /// - [`description(Option<String>)`](crate::operation::get_project::GetProjectOutput::description): <p>The description of the project.</p>
13 /// - On failure, responds with [`SdkError<GetProjectError>`](crate::operation::get_project::GetProjectError)
14 pub fn get_project(&self) -> crate::operation::get_project::builders::GetProjectFluentBuilder {
15 crate::operation::get_project::builders::GetProjectFluentBuilder::new(self.handle.clone())
16 }
17}