/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace IAM { namespace Model { /** */ class CreateUserRequest : public IAMRequest { public: AWS_IAM_API CreateUserRequest(); // 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 "CreateUser"; } AWS_IAM_API Aws::String SerializePayload() const override; protected: AWS_IAM_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The path for the user name. For more information about paths, see IAM * identifiers in the IAM User Guide.

This parameter is optional. * If it is not included, it defaults to a slash (/).

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& GetPath() const{ return m_path; } /** *

The path for the user name. For more information about paths, see IAM * identifiers in the IAM User Guide.

This parameter is optional. * If it is not included, it defaults to a slash (/).

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 PathHasBeenSet() const { return m_pathHasBeenSet; } /** *

The path for the user name. For more information about paths, see IAM * identifiers in the IAM User Guide.

This parameter is optional. * If it is not included, it defaults to a slash (/).

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 SetPath(const Aws::String& value) { m_pathHasBeenSet = true; m_path = value; } /** *

The path for the user name. For more information about paths, see IAM * identifiers in the IAM User Guide.

This parameter is optional. * If it is not included, it defaults to a slash (/).

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 SetPath(Aws::String&& value) { m_pathHasBeenSet = true; m_path = std::move(value); } /** *

The path for the user name. For more information about paths, see IAM * identifiers in the IAM User Guide.

This parameter is optional. * If it is not included, it defaults to a slash (/).

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 SetPath(const char* value) { m_pathHasBeenSet = true; m_path.assign(value); } /** *

The path for the user name. For more information about paths, see IAM * identifiers in the IAM User Guide.

This parameter is optional. * If it is not included, it defaults to a slash (/).

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 CreateUserRequest& WithPath(const Aws::String& value) { SetPath(value); return *this;} /** *

The path for the user name. For more information about paths, see IAM * identifiers in the IAM User Guide.

This parameter is optional. * If it is not included, it defaults to a slash (/).

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 CreateUserRequest& WithPath(Aws::String&& value) { SetPath(std::move(value)); return *this;} /** *

The path for the user name. For more information about paths, see IAM * identifiers in the IAM User Guide.

This parameter is optional. * If it is not included, it defaults to a slash (/).

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 CreateUserRequest& WithPath(const char* value) { SetPath(value); return *this;} /** *

The name of the user to create.

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& GetUserName() const{ return m_userName; } /** *

The name of the user to create.

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 UserNameHasBeenSet() const { return m_userNameHasBeenSet; } /** *

The name of the user to create.

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 SetUserName(const Aws::String& value) { m_userNameHasBeenSet = true; m_userName = value; } /** *

The name of the user to create.

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 SetUserName(Aws::String&& value) { m_userNameHasBeenSet = true; m_userName = std::move(value); } /** *

The name of the user to create.

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 SetUserName(const char* value) { m_userNameHasBeenSet = true; m_userName.assign(value); } /** *

The name of the user to create.

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 CreateUserRequest& WithUserName(const Aws::String& value) { SetUserName(value); return *this;} /** *

The name of the user to create.

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 CreateUserRequest& WithUserName(Aws::String&& value) { SetUserName(std::move(value)); return *this;} /** *

The name of the user to create.

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 CreateUserRequest& WithUserName(const char* value) { SetUserName(value); return *this;} /** *

The ARN of the managed policy that is used to set the permissions boundary * for the user.

A permissions boundary policy defines the maximum * permissions that identity-based policies can grant to an entity, but does not * grant permissions. Permissions boundaries do not define the maximum permissions * that a resource-based policy can grant to an entity. To learn more, see Permissions * boundaries for IAM entities in the IAM User Guide.

For more * information about policy types, see Policy * types in the IAM User Guide.

*/ inline const Aws::String& GetPermissionsBoundary() const{ return m_permissionsBoundary; } /** *

The ARN of the managed policy that is used to set the permissions boundary * for the user.

A permissions boundary policy defines the maximum * permissions that identity-based policies can grant to an entity, but does not * grant permissions. Permissions boundaries do not define the maximum permissions * that a resource-based policy can grant to an entity. To learn more, see Permissions * boundaries for IAM entities in the IAM User Guide.

For more * information about policy types, see Policy * types in the IAM User Guide.

*/ inline bool PermissionsBoundaryHasBeenSet() const { return m_permissionsBoundaryHasBeenSet; } /** *

The ARN of the managed policy that is used to set the permissions boundary * for the user.

A permissions boundary policy defines the maximum * permissions that identity-based policies can grant to an entity, but does not * grant permissions. Permissions boundaries do not define the maximum permissions * that a resource-based policy can grant to an entity. To learn more, see Permissions * boundaries for IAM entities in the IAM User Guide.

For more * information about policy types, see Policy * types in the IAM User Guide.

*/ inline void SetPermissionsBoundary(const Aws::String& value) { m_permissionsBoundaryHasBeenSet = true; m_permissionsBoundary = value; } /** *

The ARN of the managed policy that is used to set the permissions boundary * for the user.

A permissions boundary policy defines the maximum * permissions that identity-based policies can grant to an entity, but does not * grant permissions. Permissions boundaries do not define the maximum permissions * that a resource-based policy can grant to an entity. To learn more, see Permissions * boundaries for IAM entities in the IAM User Guide.

For more * information about policy types, see Policy * types in the IAM User Guide.

*/ inline void SetPermissionsBoundary(Aws::String&& value) { m_permissionsBoundaryHasBeenSet = true; m_permissionsBoundary = std::move(value); } /** *

The ARN of the managed policy that is used to set the permissions boundary * for the user.

A permissions boundary policy defines the maximum * permissions that identity-based policies can grant to an entity, but does not * grant permissions. Permissions boundaries do not define the maximum permissions * that a resource-based policy can grant to an entity. To learn more, see Permissions * boundaries for IAM entities in the IAM User Guide.

For more * information about policy types, see Policy * types in the IAM User Guide.

*/ inline void SetPermissionsBoundary(const char* value) { m_permissionsBoundaryHasBeenSet = true; m_permissionsBoundary.assign(value); } /** *

The ARN of the managed policy that is used to set the permissions boundary * for the user.

A permissions boundary policy defines the maximum * permissions that identity-based policies can grant to an entity, but does not * grant permissions. Permissions boundaries do not define the maximum permissions * that a resource-based policy can grant to an entity. To learn more, see Permissions * boundaries for IAM entities in the IAM User Guide.

For more * information about policy types, see Policy * types in the IAM User Guide.

*/ inline CreateUserRequest& WithPermissionsBoundary(const Aws::String& value) { SetPermissionsBoundary(value); return *this;} /** *

The ARN of the managed policy that is used to set the permissions boundary * for the user.

A permissions boundary policy defines the maximum * permissions that identity-based policies can grant to an entity, but does not * grant permissions. Permissions boundaries do not define the maximum permissions * that a resource-based policy can grant to an entity. To learn more, see Permissions * boundaries for IAM entities in the IAM User Guide.

For more * information about policy types, see Policy * types in the IAM User Guide.

*/ inline CreateUserRequest& WithPermissionsBoundary(Aws::String&& value) { SetPermissionsBoundary(std::move(value)); return *this;} /** *

The ARN of the managed policy that is used to set the permissions boundary * for the user.

A permissions boundary policy defines the maximum * permissions that identity-based policies can grant to an entity, but does not * grant permissions. Permissions boundaries do not define the maximum permissions * that a resource-based policy can grant to an entity. To learn more, see Permissions * boundaries for IAM entities in the IAM User Guide.

For more * information about policy types, see Policy * types in the IAM User Guide.

*/ inline CreateUserRequest& WithPermissionsBoundary(const char* value) { SetPermissionsBoundary(value); return *this;} /** *

A list of tags that you want to attach to the new user. Each tag consists of * a key name and an associated value. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline const Aws::Vector& GetTags() const{ return m_tags; } /** *

A list of tags that you want to attach to the new user. Each tag consists of * a key name and an associated value. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

A list of tags that you want to attach to the new user. Each tag consists of * a key name and an associated value. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline void SetTags(const Aws::Vector& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

A list of tags that you want to attach to the new user. Each tag consists of * a key name and an associated value. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline void SetTags(Aws::Vector&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

A list of tags that you want to attach to the new user. Each tag consists of * a key name and an associated value. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline CreateUserRequest& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

A list of tags that you want to attach to the new user. Each tag consists of * a key name and an associated value. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline CreateUserRequest& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

A list of tags that you want to attach to the new user. Each tag consists of * a key name and an associated value. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline CreateUserRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *

A list of tags that you want to attach to the new user. Each tag consists of * a key name and an associated value. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline CreateUserRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } private: Aws::String m_path; bool m_pathHasBeenSet = false; Aws::String m_userName; bool m_userNameHasBeenSet = false; Aws::String m_permissionsBoundary; bool m_permissionsBoundaryHasBeenSet = false; Aws::Vector m_tags; bool m_tagsHasBeenSet = false; }; } // namespace Model } // namespace IAM } // namespace Aws