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

The name of the instance profile to create.

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

The name of the instance profile to create.

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

The name of the instance profile to create.

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 SetInstanceProfileName(const Aws::String& value) { m_instanceProfileNameHasBeenSet = true; m_instanceProfileName = value; } /** *

The name of the instance profile to create.

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

The name of the instance profile to create.

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 SetInstanceProfileName(const char* value) { m_instanceProfileNameHasBeenSet = true; m_instanceProfileName.assign(value); } /** *

The name of the instance profile to create.

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 CreateInstanceProfileRequest& WithInstanceProfileName(const Aws::String& value) { SetInstanceProfileName(value); return *this;} /** *

The name of the instance profile to create.

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

The name of the instance profile to create.

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 CreateInstanceProfileRequest& WithInstanceProfileName(const char* value) { SetInstanceProfileName(value); return *this;} /** *

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

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

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

A list of tags that you want to attach to the newly created IAM instance * profile. 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 newly created IAM instance * profile. 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 newly created IAM instance * profile. 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 newly created IAM instance * profile. 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 newly created IAM instance * profile. 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 CreateInstanceProfileRequest& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

A list of tags that you want to attach to the newly created IAM instance * profile. 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 CreateInstanceProfileRequest& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

A list of tags that you want to attach to the newly created IAM instance * profile. 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 CreateInstanceProfileRequest& 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 newly created IAM instance * profile. 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 CreateInstanceProfileRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } private: Aws::String m_instanceProfileName; bool m_instanceProfileNameHasBeenSet = false; Aws::String m_path; bool m_pathHasBeenSet = false; Aws::Vector m_tags; bool m_tagsHasBeenSet = false; }; } // namespace Model } // namespace IAM } // namespace Aws