aws-sdk-opsworks 0.26.0

AWS SDK for AWS OpsWorks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateMyUserProfile`](crate::operation::update_my_user_profile::builders::UpdateMyUserProfileFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`ssh_public_key(impl Into<String>)`](crate::operation::update_my_user_profile::builders::UpdateMyUserProfileFluentBuilder::ssh_public_key) / [`set_ssh_public_key(Option<String>)`](crate::operation::update_my_user_profile::builders::UpdateMyUserProfileFluentBuilder::set_ssh_public_key): <p>The user's SSH public key.</p>
    /// - On success, responds with [`UpdateMyUserProfileOutput`](crate::operation::update_my_user_profile::UpdateMyUserProfileOutput)
    /// - On failure, responds with [`SdkError<UpdateMyUserProfileError>`](crate::operation::update_my_user_profile::UpdateMyUserProfileError)
    pub fn update_my_user_profile(
        &self,
    ) -> crate::operation::update_my_user_profile::builders::UpdateMyUserProfileFluentBuilder {
        crate::operation::update_my_user_profile::builders::UpdateMyUserProfileFluentBuilder::new(
            self.handle.clone(),
        )
    }
}