/** * 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 UpdateRoleRequest : public IAMRequest { public: AWS_IAM_API UpdateRoleRequest(); // 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 "UpdateRole"; } 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 role that you want to modify.

*/ inline const Aws::String& GetRoleName() const{ return m_roleName; } /** *

The name of the role that you want to modify.

*/ inline bool RoleNameHasBeenSet() const { return m_roleNameHasBeenSet; } /** *

The name of the role that you want to modify.

*/ inline void SetRoleName(const Aws::String& value) { m_roleNameHasBeenSet = true; m_roleName = value; } /** *

The name of the role that you want to modify.

*/ inline void SetRoleName(Aws::String&& value) { m_roleNameHasBeenSet = true; m_roleName = std::move(value); } /** *

The name of the role that you want to modify.

*/ inline void SetRoleName(const char* value) { m_roleNameHasBeenSet = true; m_roleName.assign(value); } /** *

The name of the role that you want to modify.

*/ inline UpdateRoleRequest& WithRoleName(const Aws::String& value) { SetRoleName(value); return *this;} /** *

The name of the role that you want to modify.

*/ inline UpdateRoleRequest& WithRoleName(Aws::String&& value) { SetRoleName(std::move(value)); return *this;} /** *

The name of the role that you want to modify.

*/ inline UpdateRoleRequest& WithRoleName(const char* value) { SetRoleName(value); return *this;} /** *

The new description that you want to apply to the specified role.

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

The new description that you want to apply to the specified role.

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

The new description that you want to apply to the specified role.

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

The new description that you want to apply to the specified role.

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

The new description that you want to apply to the specified role.

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

The new description that you want to apply to the specified role.

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

The new description that you want to apply to the specified role.

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

The new description that you want to apply to the specified role.

*/ inline UpdateRoleRequest& 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 UpdateRoleRequest& WithMaxSessionDuration(int value) { SetMaxSessionDuration(value); return *this;} private: Aws::String m_roleName; bool m_roleNameHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; int m_maxSessionDuration; bool m_maxSessionDurationHasBeenSet = false; }; } // namespace Model } // namespace IAM } // namespace Aws