aws_sdk_datazone/client/update_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 [`UpdateEnvironmentProfile`](crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - [`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>
9 /// - [`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>
10 /// - [`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>
11 /// - [`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>
12 /// - [`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>
13 /// - On success, responds with [`UpdateEnvironmentProfileOutput`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput) with field(s):
14 /// - [`id(String)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::id): <p>The identifier of the environment profile that is to be udpated.</p>
15 /// - [`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>
16 /// - [`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>
17 /// - [`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>
18 /// - [`created_by(String)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::created_by): <p>The Amazon DataZone user who created the environment profile.</p>
19 /// - [`created_at(Option<DateTime>)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::created_at): <p>The timestamp of when the environment profile was created.</p>
20 /// - [`updated_at(Option<DateTime>)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::updated_at): <p>The timestamp of when the environment profile was updated.</p>
21 /// - [`name(String)`](crate::operation::update_environment_profile::UpdateEnvironmentProfileOutput::name): <p>The name to be updated as part of the <code>UpdateEnvironmentProfile</code> action.</p>
22 /// - [`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>
23 /// - [`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>
24 /// - [`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>
25 /// - [`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>
26 /// - On failure, responds with [`SdkError<UpdateEnvironmentProfileError>`](crate::operation::update_environment_profile::UpdateEnvironmentProfileError)
27 pub fn update_environment_profile(&self) -> crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder {
28 crate::operation::update_environment_profile::builders::UpdateEnvironmentProfileFluentBuilder::new(self.handle.clone())
29 }
30}