aws_sdk_datazone/client/update_user_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 [`UpdateUserProfile`](crate::operation::update_user_profile::builders::UpdateUserProfileFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`domain_identifier(impl Into<String>)`](crate::operation::update_user_profile::builders::UpdateUserProfileFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::update_user_profile::builders::UpdateUserProfileFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The identifier of the Amazon DataZone domain in which a user profile is updated.</p><br>
7 /// - [`user_identifier(impl Into<String>)`](crate::operation::update_user_profile::builders::UpdateUserProfileFluentBuilder::user_identifier) / [`set_user_identifier(Option<String>)`](crate::operation::update_user_profile::builders::UpdateUserProfileFluentBuilder::set_user_identifier):<br>required: **true**<br><p>The identifier of the user whose user profile is to be updated.</p><br>
8 /// - [`r#type(UserProfileType)`](crate::operation::update_user_profile::builders::UpdateUserProfileFluentBuilder::type) / [`set_type(Option<UserProfileType>)`](crate::operation::update_user_profile::builders::UpdateUserProfileFluentBuilder::set_type):<br>required: **false**<br><p>The type of the user profile that are to be updated.</p><br>
9 /// - [`status(UserProfileStatus)`](crate::operation::update_user_profile::builders::UpdateUserProfileFluentBuilder::status) / [`set_status(Option<UserProfileStatus>)`](crate::operation::update_user_profile::builders::UpdateUserProfileFluentBuilder::set_status):<br>required: **true**<br><p>The status of the user profile that are to be updated.</p><br>
10 /// - On success, responds with [`UpdateUserProfileOutput`](crate::operation::update_user_profile::UpdateUserProfileOutput) with field(s):
11 /// - [`domain_id(Option<String>)`](crate::operation::update_user_profile::UpdateUserProfileOutput::domain_id): <p>The identifier of the Amazon DataZone domain in which a user profile is updated.</p>
12 /// - [`id(Option<String>)`](crate::operation::update_user_profile::UpdateUserProfileOutput::id): <p>The identifier of the user profile.</p>
13 /// - [`r#type(Option<UserProfileType>)`](crate::operation::update_user_profile::UpdateUserProfileOutput::type): <p>The type of the user profile.</p>
14 /// - [`status(Option<UserProfileStatus>)`](crate::operation::update_user_profile::UpdateUserProfileOutput::status): <p>The status of the user profile.</p>
15 /// - [`details(Option<UserProfileDetails>)`](crate::operation::update_user_profile::UpdateUserProfileOutput::details): <p>The details of the user profile in Amazon DataZone.</p>
16 /// - On failure, responds with [`SdkError<UpdateUserProfileError>`](crate::operation::update_user_profile::UpdateUserProfileError)
17 pub fn update_user_profile(&self) -> crate::operation::update_user_profile::builders::UpdateUserProfileFluentBuilder {
18 crate::operation::update_user_profile::builders::UpdateUserProfileFluentBuilder::new(self.handle.clone())
19 }
20}