1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreateProject`](crate::operation::create_project::builders::CreateProjectFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`space_name(impl Into<String>)`](crate::operation::create_project::builders::CreateProjectFluentBuilder::space_name) / [`set_space_name(Option<String>)`](crate::operation::create_project::builders::CreateProjectFluentBuilder::set_space_name): <p>The name of the space.</p>
    ///   - [`display_name(impl Into<String>)`](crate::operation::create_project::builders::CreateProjectFluentBuilder::display_name) / [`set_display_name(Option<String>)`](crate::operation::create_project::builders::CreateProjectFluentBuilder::set_display_name): <p>The friendly name of the project that will be displayed to users.</p>
    ///   - [`description(impl Into<String>)`](crate::operation::create_project::builders::CreateProjectFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_project::builders::CreateProjectFluentBuilder::set_description): <p>The description of the project. This description will be displayed to all users of the project. We recommend providing a brief description of the project and its intended purpose.</p>
    /// - On success, responds with [`CreateProjectOutput`](crate::operation::create_project::CreateProjectOutput) with field(s):
    ///   - [`space_name(Option<String>)`](crate::operation::create_project::CreateProjectOutput::space_name): <p>The name of the space.</p>
    ///   - [`name(Option<String>)`](crate::operation::create_project::CreateProjectOutput::name): <p>The name of the project in the space.</p>
    ///   - [`display_name(Option<String>)`](crate::operation::create_project::CreateProjectOutput::display_name): <p>The friendly name of the project.</p>
    ///   - [`description(Option<String>)`](crate::operation::create_project::CreateProjectOutput::description): <p>The description of the project.</p>
    /// - On failure, responds with [`SdkError<CreateProjectError>`](crate::operation::create_project::CreateProjectError)
    pub fn create_project(
        &self,
    ) -> crate::operation::create_project::builders::CreateProjectFluentBuilder {
        crate::operation::create_project::builders::CreateProjectFluentBuilder::new(
            self.handle.clone(),
        )
    }
}