/** * 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 CreateGroupRequest : public IAMRequest { public: AWS_IAM_API CreateGroupRequest(); // 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 "CreateGroup"; } AWS_IAM_API Aws::String SerializePayload() const override; protected: AWS_IAM_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The path to the group. 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 to the group. 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 to the group. 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 to the group. 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 to the group. 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 to the group. 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 CreateGroupRequest& WithPath(const Aws::String& value) { SetPath(value); return *this;} /** *

The path to the group. 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 CreateGroupRequest& WithPath(Aws::String&& value) { SetPath(std::move(value)); return *this;} /** *

The path to the group. 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 CreateGroupRequest& WithPath(const char* value) { SetPath(value); return *this;} /** *

The name of the group to create. Do not include the path in this value.

*

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

The name of the group to create. Do not include the path in this value.

*

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

The name of the group to create. Do not include the path in this value.

*

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 SetGroupName(const Aws::String& value) { m_groupNameHasBeenSet = true; m_groupName = value; } /** *

The name of the group to create. Do not include the path in this value.

*

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

The name of the group to create. Do not include the path in this value.

*

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 SetGroupName(const char* value) { m_groupNameHasBeenSet = true; m_groupName.assign(value); } /** *

The name of the group to create. Do not include the path in this value.

*

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 CreateGroupRequest& WithGroupName(const Aws::String& value) { SetGroupName(value); return *this;} /** *

The name of the group to create. Do not include the path in this value.

*

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

The name of the group to create. Do not include the path in this value.

*

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 CreateGroupRequest& WithGroupName(const char* value) { SetGroupName(value); return *this;} private: Aws::String m_path; bool m_pathHasBeenSet = false; Aws::String m_groupName; bool m_groupNameHasBeenSet = false; }; } // namespace Model } // namespace IAM } // namespace Aws