Struct aws_sdk_iam::operation::update_user::builders::UpdateUserInputBuilder
source · #[non_exhaustive]pub struct UpdateUserInputBuilder { /* private fields */ }
Expand description
A builder for UpdateUserInput
.
Implementations§
source§impl UpdateUserInputBuilder
impl UpdateUserInputBuilder
sourcepub fn user_name(self, input: impl Into<String>) -> Self
pub fn user_name(self, input: impl Into<String>) -> Self
Name of the user to update. If you're changing the name of the user, this is the original user name.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
This field is required.sourcepub fn set_user_name(self, input: Option<String>) -> Self
pub fn set_user_name(self, input: Option<String>) -> Self
Name of the user to update. If you're changing the name of the user, this is the original user name.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
sourcepub fn get_user_name(&self) -> &Option<String>
pub fn get_user_name(&self) -> &Option<String>
Name of the user to update. If you're changing the name of the user, this is the original user name.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
sourcepub fn new_path(self, input: impl Into<String>) -> Self
pub fn new_path(self, input: impl Into<String>) -> Self
New path for the IAM user. Include this parameter only if you're changing the user's path.
This parameter allows (through its regex pattern) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! (\u0021
) through the DEL character (\u007F
), including most punctuation characters, digits, and upper and lowercased letters.
sourcepub fn set_new_path(self, input: Option<String>) -> Self
pub fn set_new_path(self, input: Option<String>) -> Self
New path for the IAM user. Include this parameter only if you're changing the user's path.
This parameter allows (through its regex pattern) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! (\u0021
) through the DEL character (\u007F
), including most punctuation characters, digits, and upper and lowercased letters.
sourcepub fn get_new_path(&self) -> &Option<String>
pub fn get_new_path(&self) -> &Option<String>
New path for the IAM user. Include this parameter only if you're changing the user's path.
This parameter allows (through its regex pattern) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! (\u0021
) through the DEL character (\u007F
), including most punctuation characters, digits, and upper and lowercased letters.
sourcepub fn new_user_name(self, input: impl Into<String>) -> Self
pub fn new_user_name(self, input: impl Into<String>) -> Self
New name for the user. Include this parameter only if you're changing the user's name.
IAM user, group, role, and policy names must be unique within the account. Names are not distinguished by case. For example, you cannot create resources named both "MyResource" and "myresource".
sourcepub fn set_new_user_name(self, input: Option<String>) -> Self
pub fn set_new_user_name(self, input: Option<String>) -> Self
New name for the user. Include this parameter only if you're changing the user's name.
IAM user, group, role, and policy names must be unique within the account. Names are not distinguished by case. For example, you cannot create resources named both "MyResource" and "myresource".
sourcepub fn get_new_user_name(&self) -> &Option<String>
pub fn get_new_user_name(&self) -> &Option<String>
New name for the user. Include this parameter only if you're changing the user's name.
IAM user, group, role, and policy names must be unique within the account. Names are not distinguished by case. For example, you cannot create resources named both "MyResource" and "myresource".
sourcepub fn build(self) -> Result<UpdateUserInput, BuildError>
pub fn build(self) -> Result<UpdateUserInput, BuildError>
Consumes the builder and constructs a UpdateUserInput
.
source§impl UpdateUserInputBuilder
impl UpdateUserInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateUserOutput, SdkError<UpdateUserError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateUserOutput, SdkError<UpdateUserError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateUserInputBuilder
impl Clone for UpdateUserInputBuilder
source§fn clone(&self) -> UpdateUserInputBuilder
fn clone(&self) -> UpdateUserInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateUserInputBuilder
impl Debug for UpdateUserInputBuilder
source§impl Default for UpdateUserInputBuilder
impl Default for UpdateUserInputBuilder
source§fn default() -> UpdateUserInputBuilder
fn default() -> UpdateUserInputBuilder
source§impl PartialEq for UpdateUserInputBuilder
impl PartialEq for UpdateUserInputBuilder
source§fn eq(&self, other: &UpdateUserInputBuilder) -> bool
fn eq(&self, other: &UpdateUserInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.