aws_sdk_datazone/client/update_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 [`UpdateEnvironmentProfile`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`domain_identifier(impl Into<String>)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The identifier of the Amazon DataZone domain in which an environment profile is to be updated.</p><br>
/// - [`identifier(impl Into<String>)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::set_identifier):<br>required: **true**<br><p>The identifier of the environment profile that is to be updated.</p><br>
/// - [`name(impl Into<String>)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::set_name):<br>required: **false**<br><p>The name to be updated as part of the <code>UpdateEnvironmentProfile</code> action.</p><br>
/// - [`description(impl Into<String>)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::set_description):<br>required: **false**<br><p>The description to be updated as part of the <code>UpdateEnvironmentProfile</code> action.</p><br>
/// - [`user_parameters(EnvironmentParameter)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::user_parameters) / [`set_user_parameters(Option<Vec::<EnvironmentParameter>>)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::set_user_parameters):<br>required: **false**<br><p>The user parameters to be updated as part of the <code>UpdateEnvironmentProfile</code> action.</p><br>
/// - [`aws_account_id(impl Into<String>)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::set_aws_account_id):<br>required: **false**<br><p>The Amazon Web Services account in which a specified environment profile is to be udpated.</p><br>
/// - [`aws_account_region(impl Into<String>)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::aws_account_region) / [`set_aws_account_region(Option<String>)`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::set_aws_account_region):<br>required: **false**<br><p>The Amazon Web Services Region in which a specified environment profile is to be updated.</p><br>
/// - On success, responds with [`UpdateEnvironmentProfileOutput`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput) with field(s):
/// - [`id(String)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::id): <p>The identifier of the environment profile that is to be udpated.</p>
/// - [`domain_id(String)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::domain_id): <p>The identifier of the Amazon DataZone domain in which the environment profile is to be updated.</p>
/// - [`aws_account_id(Option<String>)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::aws_account_id): <p>The Amazon Web Services account in which a specified environment profile is to be udpated.</p>
/// - [`aws_account_region(Option<String>)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::aws_account_region): <p>The Amazon Web Services Region in which a specified environment profile is to be updated.</p>
/// - [`created_by(String)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::created_by): <p>The Amazon DataZone user who created the environment profile.</p>
/// - [`created_at(Option<DateTime>)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::created_at): <p>The timestamp of when the environment profile was created.</p>
/// - [`updated_at(Option<DateTime>)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::updated_at): <p>The timestamp of when the environment profile was updated.</p>
/// - [`name(String)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::name): <p>The name to be updated as part of the <code>UpdateEnvironmentProfile</code> action.</p>
/// - [`description(Option<String>)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::description): <p>The description to be updated as part of the <code>UpdateEnvironmentProfile</code> action.</p>
/// - [`environment_blueprint_id(String)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::environment_blueprint_id): <p>The identifier of the blueprint of the environment profile that is to be updated.</p>
/// - [`project_id(Option<String>)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::project_id): <p>The identifier of the project of the environment profile that is to be updated.</p>
/// - [`user_parameters(Option<Vec::<CustomParameter>>)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::user_parameters): <p>The user parameters to be updated as part of the <code>UpdateEnvironmentProfile</code> action.</p>
/// - On failure, responds with [`SdkError<UpdateEnvironmentProfileError>`](crate::operation::update_environment_profile::UpdateEnvironmentProfileError)
pub fn update_environment_profile(&self) -> crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder {
crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::new(self.handle.clone())
}
}