aws_sdk_datazone/client/get_project_profile.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 [`GetProjectProfile`](crate::operation::get_project_profile::builders::GetProjectProfileFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`GetProjectProfileOutput`](crate::operation::get_project_profile::GetProjectProfileOutput) with field(s):
9 /// - [`domain_id(String)`](crate::operation::get_project_profile::GetProjectProfileOutput::domain_id): <p>The ID of the domain of the project profile.</p>
10 /// - [`id(String)`](crate::operation::get_project_profile::GetProjectProfileOutput::id): <p>The ID of the project profile.</p>
11 /// - [`name(String)`](crate::operation::get_project_profile::GetProjectProfileOutput::name): <p>The name of the project profile.</p>
12 /// - [`description(Option<String>)`](crate::operation::get_project_profile::GetProjectProfileOutput::description): <p>The description of the project profile.</p>
13 /// - [`status(Option<Status>)`](crate::operation::get_project_profile::GetProjectProfileOutput::status): <p>The status of the project profile.</p>
14 /// - [`environment_configurations(Option<Vec::<EnvironmentConfiguration>>)`](crate::operation::get_project_profile::GetProjectProfileOutput::environment_configurations): <p>The environment configurations of the project profile.</p>
15 /// - [`created_by(String)`](crate::operation::get_project_profile::GetProjectProfileOutput::created_by): <p>The user who created the project profile.</p>
16 /// - [`created_at(Option<DateTime>)`](crate::operation::get_project_profile::GetProjectProfileOutput::created_at): <p>The timestamp of when the project profile was created.</p>
17 /// - [`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>
18 /// - [`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>
19 /// - On failure, responds with [`SdkError<GetProjectProfileError>`](crate::operation::get_project_profile::GetProjectProfileError)
20 pub fn get_project_profile(&self) -> crate::operation::get_project_profile::builders::GetProjectProfileFluentBuilder {
21 crate::operation::get_project_profile::builders::GetProjectProfileFluentBuilder::new(self.handle.clone())
22 }
23}