aws_sdk_datazone/client/get_environment_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 [`GetEnvironmentProfile`](crate::operation::get_environment_profile::builders::GetEnvironmentProfileFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`domain_identifier(impl Into<String>)`](crate::operation::get_environment_profile::builders::GetEnvironmentProfileFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::get_environment_profile::builders::GetEnvironmentProfileFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The ID of the Amazon DataZone domain in which this environment profile exists.</p><br>
7 /// - [`identifier(impl Into<String>)`](crate::operation::get_environment_profile::builders::GetEnvironmentProfileFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::get_environment_profile::builders::GetEnvironmentProfileFluentBuilder::set_identifier):<br>required: **true**<br><p>The ID of the environment profile.</p><br>
8 /// - On success, responds with [`GetEnvironmentProfileOutput`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput) with field(s):
9 /// - [`id(String)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::id): <p>The ID of the environment profile.</p>
10 /// - [`domain_id(String)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::domain_id): <p>The ID of the Amazon DataZone domain in which this environment profile exists.</p>
11 /// - [`aws_account_id(Option<String>)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::aws_account_id): <p>The ID of the Amazon Web Services account where this environment profile exists.</p>
12 /// - [`aws_account_region(Option<String>)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::aws_account_region): <p>The Amazon Web Services region where this environment profile exists.</p>
13 /// - [`created_by(String)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::created_by): <p>The Amazon DataZone user who created this environment profile.</p>
14 /// - [`created_at(Option<DateTime>)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::created_at): <p>The timestamp of when this environment profile was created.</p>
15 /// - [`updated_at(Option<DateTime>)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::updated_at): <p>The timestamp of when this environment profile was upated.</p>
16 /// - [`name(String)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::name): <p>The name of the environment profile.</p>
17 /// - [`description(Option<String>)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::description): <p>The description of the environment profile.</p>
18 /// - [`environment_blueprint_id(String)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::environment_blueprint_id): <p>The ID of the blueprint with which this environment profile is created.</p>
19 /// - [`project_id(Option<String>)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::project_id): <p>The ID of the Amazon DataZone project in which this environment profile is created.</p>
20 /// - [`user_parameters(Option<Vec::<CustomParameter>>)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::user_parameters): <p>The user parameters of the environment profile.</p>
21 /// - On failure, responds with [`SdkError<GetEnvironmentProfileError>`](crate::operation::get_environment_profile::GetEnvironmentProfileError)
22 pub fn get_environment_profile(&self) -> crate::operation::get_environment_profile::builders::GetEnvironmentProfileFluentBuilder {
23 crate::operation::get_environment_profile::builders::GetEnvironmentProfileFluentBuilder::new(self.handle.clone())
24 }
25}