// 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:
/// - [`domain_identifier(impl Into<String>)`](crate::operation::create_project::builders::CreateProjectFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::create_project::builders::CreateProjectFluentBuilder::set_domain_identifier): <p>The ID of the Amazon DataZone domain in which this project is created.</p>
/// - [`name(impl Into<String>)`](crate::operation::create_project::builders::CreateProjectFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_project::builders::CreateProjectFluentBuilder::set_name): <p>The name of the Amazon DataZone project.</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 Amazon DataZone project.</p>
/// - [`glossary_terms(impl Into<String>)`](crate::operation::create_project::builders::CreateProjectFluentBuilder::glossary_terms) / [`set_glossary_terms(Option<Vec<String>>)`](crate::operation::create_project::builders::CreateProjectFluentBuilder::set_glossary_terms): <p>The glossary terms that can be used in this Amazon DataZone project.</p>
/// - On success, responds with [`CreateProjectOutput`](crate::operation::create_project::CreateProjectOutput) with field(s):
/// - [`domain_id(Option<String>)`](crate::operation::create_project::CreateProjectOutput::domain_id): <p>The identifier of the Amazon DataZone domain in which the project was created.</p>
/// - [`id(Option<String>)`](crate::operation::create_project::CreateProjectOutput::id): <p>The ID of the Amazon DataZone project.</p>
/// - [`name(Option<String>)`](crate::operation::create_project::CreateProjectOutput::name): <p>The name of the project.</p>
/// - [`description(Option<String>)`](crate::operation::create_project::CreateProjectOutput::description): <p>The description of the project.</p>
/// - [`created_by(Option<String>)`](crate::operation::create_project::CreateProjectOutput::created_by): <p>The Amazon DataZone user who created the project.</p>
/// - [`created_at(Option<DateTime>)`](crate::operation::create_project::CreateProjectOutput::created_at): <p>The timestamp of when the project was created.</p>
/// - [`last_updated_at(Option<DateTime>)`](crate::operation::create_project::CreateProjectOutput::last_updated_at): <p>The timestamp of when the project was last updated.</p>
/// - [`glossary_terms(Option<Vec<String>>)`](crate::operation::create_project::CreateProjectOutput::glossary_terms): <p>The glossary terms that can be used in 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())
}
}