aws_sdk_datazone/client/get_project.rs
// 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:
/// - [`domain_identifier(impl Into<String>)`](crate::operation::get_project::builders::GetProjectFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::get_project::builders::GetProjectFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The ID of the Amazon DataZone domain in which the project exists.</p><br>
/// - [`identifier(impl Into<String>)`](crate::operation::get_project::builders::GetProjectFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::get_project::builders::GetProjectFluentBuilder::set_identifier):<br>required: **true**<br><p>The ID of the project.</p><br>
/// - On success, responds with [`GetProjectOutput`](crate::operation::get_project::GetProjectOutput) with field(s):
/// - [`domain_id(String)`](crate::operation::get_project::GetProjectOutput::domain_id): <p>The ID of the Amazon DataZone domain in which the project exists.</p>
/// - [`id(String)`](crate::operation::get_project::GetProjectOutput::id): <p>>The ID of the project.</p>
/// - [`name(String)`](crate::operation::get_project::GetProjectOutput::name): <p>The name of the project.</p>
/// - [`description(Option<String>)`](crate::operation::get_project::GetProjectOutput::description): <p>The description of the project.</p>
/// - [`project_status(Option<ProjectStatus>)`](crate::operation::get_project::GetProjectOutput::project_status): <p>The status of the project.</p>
/// - [`failure_reasons(Option<Vec::<ProjectDeletionError>>)`](crate::operation::get_project::GetProjectOutput::failure_reasons): <p>Specifies the error message that is returned if the operation cannot be successfully completed.</p>
/// - [`created_by(String)`](crate::operation::get_project::GetProjectOutput::created_by): <p>The Amazon DataZone user who created the project.</p>
/// - [`created_at(Option<DateTime>)`](crate::operation::get_project::GetProjectOutput::created_at): <p>The timestamp of when the project was created.</p>
/// - [`last_updated_at(Option<DateTime>)`](crate::operation::get_project::GetProjectOutput::last_updated_at): <p>The timestamp of when the project was last updated.</p>
/// - [`glossary_terms(Option<Vec::<String>>)`](crate::operation::get_project::GetProjectOutput::glossary_terms): <p>The business glossary terms that can be used in the project.</p>
/// - [`domain_unit_id(Option<String>)`](crate::operation::get_project::GetProjectOutput::domain_unit_id): <p>The ID of the domain unit.</p>
/// - [`project_profile_id(Option<String>)`](crate::operation::get_project::GetProjectOutput::project_profile_id): <p>The ID of the project profile of a project.</p>
/// - [`user_parameters(Option<Vec::<EnvironmentConfigurationUserParameter>>)`](crate::operation::get_project::GetProjectOutput::user_parameters): <p>The user parameters of a project.</p>
/// - [`environment_deployment_details(Option<EnvironmentDeploymentDetails>)`](crate::operation::get_project::GetProjectOutput::environment_deployment_details): <p>The environment deployment status of a 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())
}
}