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 /// - [`project_resource_tags(Option<Vec::<ResourceTagParameter>>)`](crate::operation::get_project_profile::GetProjectProfileOutput::project_resource_tags): <p>The resource tags of the project profile.</p>
15 /// - [`allow_custom_project_resource_tags(Option<bool>)`](crate::operation::get_project_profile::GetProjectProfileOutput::allow_custom_project_resource_tags): <p>Specifies whether custom project resource tags are supported.</p>
16 /// - [`project_resource_tags_description(Option<String>)`](crate::operation::get_project_profile::GetProjectProfileOutput::project_resource_tags_description): <p>Field viewable through the UI that provides a project user with the allowed resource tag specifications.</p>
17 /// - [`environment_configurations(Option<Vec::<EnvironmentConfiguration>>)`](crate::operation::get_project_profile::GetProjectProfileOutput::environment_configurations): <p>The environment configurations of the project profile.</p>
18 /// - [`created_by(String)`](crate::operation::get_project_profile::GetProjectProfileOutput::created_by): <p>The user who created the project profile.</p>
19 /// - [`created_at(Option<DateTime>)`](crate::operation::get_project_profile::GetProjectProfileOutput::created_at): <p>The timestamp of when the project profile was created.</p>
20 /// - [`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>
21 /// - [`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>
22 /// - On failure, responds with [`SdkError<GetProjectProfileError>`](crate::operation::get_project_profile::GetProjectProfileError)
23 pub fn get_project_profile(&self) -> crate::operation::get_project_profile::builders::GetProjectProfileFluentBuilder {
24 crate::operation::get_project_profile::builders::GetProjectProfileFluentBuilder::new(self.handle.clone())
25 }
26}