/** * 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 CreateRoleRequest : public IAMRequest { public: AWS_IAM_API CreateRoleRequest(); // 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 "CreateRole"; } 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 role. 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 role. 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 role. 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 role. 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 role. 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 role. 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 CreateRoleRequest& WithPath(const Aws::String& value) { SetPath(value); return *this;} /** *

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

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

The name of the role 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".

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

The name of the role 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".

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

The name of the role 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".

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 SetRoleName(const Aws::String& value) { m_roleNameHasBeenSet = true; m_roleName = value; } /** *

The name of the role 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".

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

The name of the role 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".

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 SetRoleName(const char* value) { m_roleNameHasBeenSet = true; m_roleName.assign(value); } /** *

The name of the role 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".

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 CreateRoleRequest& WithRoleName(const Aws::String& value) { SetRoleName(value); return *this;} /** *

The name of the role 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".

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

The name of the role 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".

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 CreateRoleRequest& WithRoleName(const char* value) { SetRoleName(value); return *this;} /** *

The trust relationship policy document that grants an entity permission to * assume the role.

In IAM, you must provide a JSON policy that has been * converted to a string. However, for CloudFormation templates formatted in YAML, * you can provide the policy in JSON or YAML format. CloudFormation always * converts a YAML policy to JSON format before submitting it to IAM.

The regex pattern used to validate this * parameter is a string of characters consisting of the following:

  • *

    Any printable ASCII character ranging from the space character * (\u0020) through the end of the ASCII character range

  • *
  • The printable characters in the Basic Latin and Latin-1 Supplement * character set (through \u00FF)

  • The special * characters tab (\u0009), line feed (\u000A), and * carriage return (\u000D)

Upon success, the * response includes the same trust policy in JSON format.

*/ inline const Aws::String& GetAssumeRolePolicyDocument() const{ return m_assumeRolePolicyDocument; } /** *

The trust relationship policy document that grants an entity permission to * assume the role.

In IAM, you must provide a JSON policy that has been * converted to a string. However, for CloudFormation templates formatted in YAML, * you can provide the policy in JSON or YAML format. CloudFormation always * converts a YAML policy to JSON format before submitting it to IAM.

The regex pattern used to validate this * parameter is a string of characters consisting of the following:

  • *

    Any printable ASCII character ranging from the space character * (\u0020) through the end of the ASCII character range

  • *
  • The printable characters in the Basic Latin and Latin-1 Supplement * character set (through \u00FF)

  • The special * characters tab (\u0009), line feed (\u000A), and * carriage return (\u000D)

Upon success, the * response includes the same trust policy in JSON format.

*/ inline bool AssumeRolePolicyDocumentHasBeenSet() const { return m_assumeRolePolicyDocumentHasBeenSet; } /** *

The trust relationship policy document that grants an entity permission to * assume the role.

In IAM, you must provide a JSON policy that has been * converted to a string. However, for CloudFormation templates formatted in YAML, * you can provide the policy in JSON or YAML format. CloudFormation always * converts a YAML policy to JSON format before submitting it to IAM.

The regex pattern used to validate this * parameter is a string of characters consisting of the following:

  • *

    Any printable ASCII character ranging from the space character * (\u0020) through the end of the ASCII character range

  • *
  • The printable characters in the Basic Latin and Latin-1 Supplement * character set (through \u00FF)

  • The special * characters tab (\u0009), line feed (\u000A), and * carriage return (\u000D)

Upon success, the * response includes the same trust policy in JSON format.

*/ inline void SetAssumeRolePolicyDocument(const Aws::String& value) { m_assumeRolePolicyDocumentHasBeenSet = true; m_assumeRolePolicyDocument = value; } /** *

The trust relationship policy document that grants an entity permission to * assume the role.

In IAM, you must provide a JSON policy that has been * converted to a string. However, for CloudFormation templates formatted in YAML, * you can provide the policy in JSON or YAML format. CloudFormation always * converts a YAML policy to JSON format before submitting it to IAM.

The regex pattern used to validate this * parameter is a string of characters consisting of the following:

  • *

    Any printable ASCII character ranging from the space character * (\u0020) through the end of the ASCII character range

  • *
  • The printable characters in the Basic Latin and Latin-1 Supplement * character set (through \u00FF)

  • The special * characters tab (\u0009), line feed (\u000A), and * carriage return (\u000D)

Upon success, the * response includes the same trust policy in JSON format.

*/ inline void SetAssumeRolePolicyDocument(Aws::String&& value) { m_assumeRolePolicyDocumentHasBeenSet = true; m_assumeRolePolicyDocument = std::move(value); } /** *

The trust relationship policy document that grants an entity permission to * assume the role.

In IAM, you must provide a JSON policy that has been * converted to a string. However, for CloudFormation templates formatted in YAML, * you can provide the policy in JSON or YAML format. CloudFormation always * converts a YAML policy to JSON format before submitting it to IAM.

The regex pattern used to validate this * parameter is a string of characters consisting of the following:

  • *

    Any printable ASCII character ranging from the space character * (\u0020) through the end of the ASCII character range

  • *
  • The printable characters in the Basic Latin and Latin-1 Supplement * character set (through \u00FF)

  • The special * characters tab (\u0009), line feed (\u000A), and * carriage return (\u000D)

Upon success, the * response includes the same trust policy in JSON format.

*/ inline void SetAssumeRolePolicyDocument(const char* value) { m_assumeRolePolicyDocumentHasBeenSet = true; m_assumeRolePolicyDocument.assign(value); } /** *

The trust relationship policy document that grants an entity permission to * assume the role.

In IAM, you must provide a JSON policy that has been * converted to a string. However, for CloudFormation templates formatted in YAML, * you can provide the policy in JSON or YAML format. CloudFormation always * converts a YAML policy to JSON format before submitting it to IAM.

The regex pattern used to validate this * parameter is a string of characters consisting of the following:

  • *

    Any printable ASCII character ranging from the space character * (\u0020) through the end of the ASCII character range

  • *
  • The printable characters in the Basic Latin and Latin-1 Supplement * character set (through \u00FF)

  • The special * characters tab (\u0009), line feed (\u000A), and * carriage return (\u000D)

Upon success, the * response includes the same trust policy in JSON format.

*/ inline CreateRoleRequest& WithAssumeRolePolicyDocument(const Aws::String& value) { SetAssumeRolePolicyDocument(value); return *this;} /** *

The trust relationship policy document that grants an entity permission to * assume the role.

In IAM, you must provide a JSON policy that has been * converted to a string. However, for CloudFormation templates formatted in YAML, * you can provide the policy in JSON or YAML format. CloudFormation always * converts a YAML policy to JSON format before submitting it to IAM.

The regex pattern used to validate this * parameter is a string of characters consisting of the following:

  • *

    Any printable ASCII character ranging from the space character * (\u0020) through the end of the ASCII character range

  • *
  • The printable characters in the Basic Latin and Latin-1 Supplement * character set (through \u00FF)

  • The special * characters tab (\u0009), line feed (\u000A), and * carriage return (\u000D)

Upon success, the * response includes the same trust policy in JSON format.

*/ inline CreateRoleRequest& WithAssumeRolePolicyDocument(Aws::String&& value) { SetAssumeRolePolicyDocument(std::move(value)); return *this;} /** *

The trust relationship policy document that grants an entity permission to * assume the role.

In IAM, you must provide a JSON policy that has been * converted to a string. However, for CloudFormation templates formatted in YAML, * you can provide the policy in JSON or YAML format. CloudFormation always * converts a YAML policy to JSON format before submitting it to IAM.

The regex pattern used to validate this * parameter is a string of characters consisting of the following:

  • *

    Any printable ASCII character ranging from the space character * (\u0020) through the end of the ASCII character range

  • *
  • The printable characters in the Basic Latin and Latin-1 Supplement * character set (through \u00FF)

  • The special * characters tab (\u0009), line feed (\u000A), and * carriage return (\u000D)

Upon success, the * response includes the same trust policy in JSON format.

*/ inline CreateRoleRequest& WithAssumeRolePolicyDocument(const char* value) { SetAssumeRolePolicyDocument(value); return *this;} /** *

A description of the role.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

A description of the role.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

A description of the role.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

A description of the role.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

A description of the role.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

A description of the role.

*/ inline CreateRoleRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

A description of the role.

*/ inline CreateRoleRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

A description of the role.

*/ inline CreateRoleRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The maximum session duration (in seconds) that you want to set for the * specified role. If you do not specify a value for this setting, the default * value of one hour is applied. This setting can have a value from 1 hour to 12 * hours.

Anyone who assumes the role from the CLI or API can use the * DurationSeconds API parameter or the duration-seconds * CLI parameter to request a longer session. The MaxSessionDuration * setting determines the maximum duration that can be requested using the * DurationSeconds parameter. If users don't specify a value for the * DurationSeconds parameter, their security credentials are valid for * one hour by default. This applies when you use the AssumeRole* API * operations or the assume-role* CLI operations but does not apply * when you use those operations to create a console URL. For more information, see * Using * IAM roles in the IAM User Guide.

*/ inline int GetMaxSessionDuration() const{ return m_maxSessionDuration; } /** *

The maximum session duration (in seconds) that you want to set for the * specified role. If you do not specify a value for this setting, the default * value of one hour is applied. This setting can have a value from 1 hour to 12 * hours.

Anyone who assumes the role from the CLI or API can use the * DurationSeconds API parameter or the duration-seconds * CLI parameter to request a longer session. The MaxSessionDuration * setting determines the maximum duration that can be requested using the * DurationSeconds parameter. If users don't specify a value for the * DurationSeconds parameter, their security credentials are valid for * one hour by default. This applies when you use the AssumeRole* API * operations or the assume-role* CLI operations but does not apply * when you use those operations to create a console URL. For more information, see * Using * IAM roles in the IAM User Guide.

*/ inline bool MaxSessionDurationHasBeenSet() const { return m_maxSessionDurationHasBeenSet; } /** *

The maximum session duration (in seconds) that you want to set for the * specified role. If you do not specify a value for this setting, the default * value of one hour is applied. This setting can have a value from 1 hour to 12 * hours.

Anyone who assumes the role from the CLI or API can use the * DurationSeconds API parameter or the duration-seconds * CLI parameter to request a longer session. The MaxSessionDuration * setting determines the maximum duration that can be requested using the * DurationSeconds parameter. If users don't specify a value for the * DurationSeconds parameter, their security credentials are valid for * one hour by default. This applies when you use the AssumeRole* API * operations or the assume-role* CLI operations but does not apply * when you use those operations to create a console URL. For more information, see * Using * IAM roles in the IAM User Guide.

*/ inline void SetMaxSessionDuration(int value) { m_maxSessionDurationHasBeenSet = true; m_maxSessionDuration = value; } /** *

The maximum session duration (in seconds) that you want to set for the * specified role. If you do not specify a value for this setting, the default * value of one hour is applied. This setting can have a value from 1 hour to 12 * hours.

Anyone who assumes the role from the CLI or API can use the * DurationSeconds API parameter or the duration-seconds * CLI parameter to request a longer session. The MaxSessionDuration * setting determines the maximum duration that can be requested using the * DurationSeconds parameter. If users don't specify a value for the * DurationSeconds parameter, their security credentials are valid for * one hour by default. This applies when you use the AssumeRole* API * operations or the assume-role* CLI operations but does not apply * when you use those operations to create a console URL. For more information, see * Using * IAM roles in the IAM User Guide.

*/ inline CreateRoleRequest& WithMaxSessionDuration(int value) { SetMaxSessionDuration(value); return *this;} /** *

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

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

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

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

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

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

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 CreateRoleRequest& 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 role.

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 CreateRoleRequest& 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 role.

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 CreateRoleRequest& WithPermissionsBoundary(const char* value) { SetPermissionsBoundary(value); return *this;} /** *

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

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

A list of tags that you want to attach to the new role. 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 CreateRoleRequest& 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 role. 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 CreateRoleRequest& 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_roleName; bool m_roleNameHasBeenSet = false; Aws::String m_assumeRolePolicyDocument; bool m_assumeRolePolicyDocumentHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; int m_maxSessionDuration; bool m_maxSessionDurationHasBeenSet = false; Aws::String m_permissionsBoundary; bool m_permissionsBoundaryHasBeenSet = false; Aws::Vector m_tags; bool m_tagsHasBeenSet = false; }; } // namespace Model } // namespace IAM } // namespace Aws