aws_sdk_datazone/client/get_project_profile.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetProjectProfile`](crate::operation::get_project_profile::builders::GetProjectProfileFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`domain_identifier(impl Into<String>)`](crate::operation::get_project_profile::builders::GetProjectProfileFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::get_project_profile::builders::GetProjectProfileFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The ID of the domain.</p><br>
/// - [`identifier(impl Into<String>)`](crate::operation::get_project_profile::builders::GetProjectProfileFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::get_project_profile::builders::GetProjectProfileFluentBuilder::set_identifier):<br>required: **true**<br><p>The ID of the project profile.</p><br>
/// - On success, responds with [`GetProjectProfileOutput`](crate::operation::get_project_profile::GetProjectProfileOutput) with field(s):
/// - [`domain_id(String)`](crate::operation::get_project_profile::GetProjectProfileOutput::domain_id): <p>The ID of the domain of the project profile.</p>
/// - [`id(String)`](crate::operation::get_project_profile::GetProjectProfileOutput::id): <p>The ID of the project profile.</p>
/// - [`name(String)`](crate::operation::get_project_profile::GetProjectProfileOutput::name): <p>The name of the project profile.</p>
/// - [`description(Option<String>)`](crate::operation::get_project_profile::GetProjectProfileOutput::description): <p>The description of the project profile.</p>
/// - [`status(Option<Status>)`](crate::operation::get_project_profile::GetProjectProfileOutput::status): <p>The status of the project profile.</p>
/// - [`environment_configurations(Option<Vec::<EnvironmentConfiguration>>)`](crate::operation::get_project_profile::GetProjectProfileOutput::environment_configurations): <p>The environment configurations of the project profile.</p>
/// - [`created_by(String)`](crate::operation::get_project_profile::GetProjectProfileOutput::created_by): <p>The user who created the project profile.</p>
/// - [`created_at(Option<DateTime>)`](crate::operation::get_project_profile::GetProjectProfileOutput::created_at): <p>The timestamp of when the project profile was created.</p>
/// - [`last_updated_at(Option<DateTime>)`](crate::operation::get_project_profile::GetProjectProfileOutput::last_updated_at): <p>The timestamp of when project profile was last updated.</p>
/// - [`domain_unit_id(Option<String>)`](crate::operation::get_project_profile::GetProjectProfileOutput::domain_unit_id): <p>The ID of the domain unit of the project profile.</p>
/// - On failure, responds with [`SdkError<GetProjectProfileError>`](crate::operation::get_project_profile::GetProjectProfileError)
pub fn get_project_profile(&self) -> crate::operation::get_project_profile::builders::GetProjectProfileFluentBuilder {
crate::operation::get_project_profile::builders::GetProjectProfileFluentBuilder::new(self.handle.clone())
}
}