aws_sdk_datazone/client/get_environment_profile.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetEnvironmentProfile`](crate::operation::get_environment_profile::builders::GetEnvironmentProfileFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`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>
/// - [`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>
/// - On success, responds with [`GetEnvironmentProfileOutput`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput) with field(s):
/// - [`id(String)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::id): <p>The ID of the environment profile.</p>
/// - [`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>
/// - [`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>
/// - [`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>
/// - [`created_by(String)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::created_by): <p>The Amazon DataZone user who created this environment profile.</p>
/// - [`created_at(Option<DateTime>)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::created_at): <p>The timestamp of when this environment profile was created.</p>
/// - [`updated_at(Option<DateTime>)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::updated_at): <p>The timestamp of when this environment profile was upated.</p>
/// - [`name(String)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::name): <p>The name of the environment profile.</p>
/// - [`description(Option<String>)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::description): <p>The description of the environment profile.</p>
/// - [`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>
/// - [`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>
/// - [`user_parameters(Option<Vec::<CustomParameter>>)`](crate::operation::get_environment_profile::GetEnvironmentProfileOutput::user_parameters): <p>The user parameters of the environment profile.</p>
/// - On failure, responds with [`SdkError<GetEnvironmentProfileError>`](crate::operation::get_environment_profile::GetEnvironmentProfileError)
pub fn get_environment_profile(&self) -> crate::operation::get_environment_profile::builders::GetEnvironmentProfileFluentBuilder {
crate::operation::get_environment_profile::builders::GetEnvironmentProfileFluentBuilder::new(self.handle.clone())
}
}