/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace IAM { namespace Model { /** */ class UpdateUserRequest : public IAMRequest { public: AWS_IAM_API UpdateUserRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdateUser"; } AWS_IAM_API Aws::String SerializePayload() const override; protected: AWS_IAM_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

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: _+=,.@-

*/ inline const Aws::String& GetUserName() const{ return m_userName; } /** *

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: _+=,.@-

*/ inline bool UserNameHasBeenSet() const { return m_userNameHasBeenSet; } /** *

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: _+=,.@-

*/ inline void SetUserName(const Aws::String& value) { m_userNameHasBeenSet = true; m_userName = value; } /** *

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: _+=,.@-

*/ inline void SetUserName(Aws::String&& value) { m_userNameHasBeenSet = true; m_userName = std::move(value); } /** *

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: _+=,.@-

*/ inline void SetUserName(const char* value) { m_userNameHasBeenSet = true; m_userName.assign(value); } /** *

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: _+=,.@-

*/ inline UpdateUserRequest& WithUserName(const Aws::String& value) { SetUserName(value); return *this;} /** *

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: _+=,.@-

*/ inline UpdateUserRequest& WithUserName(Aws::String&& value) { SetUserName(std::move(value)); return *this;} /** *

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: _+=,.@-

*/ inline UpdateUserRequest& WithUserName(const char* value) { SetUserName(value); return *this;} /** *

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.

*/ inline const Aws::String& GetNewPath() const{ return m_newPath; } /** *

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.

*/ inline bool NewPathHasBeenSet() const { return m_newPathHasBeenSet; } /** *

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.

*/ inline void SetNewPath(const Aws::String& value) { m_newPathHasBeenSet = true; m_newPath = value; } /** *

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.

*/ inline void SetNewPath(Aws::String&& value) { m_newPathHasBeenSet = true; m_newPath = std::move(value); } /** *

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.

*/ inline void SetNewPath(const char* value) { m_newPathHasBeenSet = true; m_newPath.assign(value); } /** *

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.

*/ inline UpdateUserRequest& WithNewPath(const Aws::String& value) { SetNewPath(value); return *this;} /** *

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.

*/ inline UpdateUserRequest& WithNewPath(Aws::String&& value) { SetNewPath(std::move(value)); return *this;} /** *

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.

*/ inline UpdateUserRequest& WithNewPath(const char* value) { SetNewPath(value); return *this;} /** *

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".

*/ inline const Aws::String& GetNewUserName() const{ return m_newUserName; } /** *

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".

*/ inline bool NewUserNameHasBeenSet() const { return m_newUserNameHasBeenSet; } /** *

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".

*/ inline void SetNewUserName(const Aws::String& value) { m_newUserNameHasBeenSet = true; m_newUserName = value; } /** *

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".

*/ inline void SetNewUserName(Aws::String&& value) { m_newUserNameHasBeenSet = true; m_newUserName = std::move(value); } /** *

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".

*/ inline void SetNewUserName(const char* value) { m_newUserNameHasBeenSet = true; m_newUserName.assign(value); } /** *

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".

*/ inline UpdateUserRequest& WithNewUserName(const Aws::String& value) { SetNewUserName(value); return *this;} /** *

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".

*/ inline UpdateUserRequest& WithNewUserName(Aws::String&& value) { SetNewUserName(std::move(value)); return *this;} /** *

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".

*/ inline UpdateUserRequest& WithNewUserName(const char* value) { SetNewUserName(value); return *this;} private: Aws::String m_userName; bool m_userNameHasBeenSet = false; Aws::String m_newPath; bool m_newPathHasBeenSet = false; Aws::String m_newUserName; bool m_newUserNameHasBeenSet = false; }; } // namespace Model } // namespace IAM } // namespace Aws