/** * 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 SSM { namespace Model { /** */ class UpdateManagedInstanceRoleRequest : public SSMRequest { public: AWS_SSM_API UpdateManagedInstanceRoleRequest(); // 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 "UpdateManagedInstanceRole"; } AWS_SSM_API Aws::String SerializePayload() const override; AWS_SSM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ID of the managed node where you want to update the role.

*/ inline const Aws::String& GetInstanceId() const{ return m_instanceId; } /** *

The ID of the managed node where you want to update the role.

*/ inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; } /** *

The ID of the managed node where you want to update the role.

*/ inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; } /** *

The ID of the managed node where you want to update the role.

*/ inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); } /** *

The ID of the managed node where you want to update the role.

*/ inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); } /** *

The ID of the managed node where you want to update the role.

*/ inline UpdateManagedInstanceRoleRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;} /** *

The ID of the managed node where you want to update the role.

*/ inline UpdateManagedInstanceRoleRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;} /** *

The ID of the managed node where you want to update the role.

*/ inline UpdateManagedInstanceRoleRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;} /** *

The name of the Identity and Access Management (IAM) role that you want to * assign to the managed node. This IAM role must provide AssumeRole permissions * for the Amazon Web Services Systems Manager service principal * ssm.amazonaws.com. For more information, see Create * an IAM service role for a hybrid environment in the Amazon Web Services * Systems Manager User Guide.

You can't specify an IAM * service-linked role for this parameter. You must create a unique role.

* */ inline const Aws::String& GetIamRole() const{ return m_iamRole; } /** *

The name of the Identity and Access Management (IAM) role that you want to * assign to the managed node. This IAM role must provide AssumeRole permissions * for the Amazon Web Services Systems Manager service principal * ssm.amazonaws.com. For more information, see Create * an IAM service role for a hybrid environment in the Amazon Web Services * Systems Manager User Guide.

You can't specify an IAM * service-linked role for this parameter. You must create a unique role.

* */ inline bool IamRoleHasBeenSet() const { return m_iamRoleHasBeenSet; } /** *

The name of the Identity and Access Management (IAM) role that you want to * assign to the managed node. This IAM role must provide AssumeRole permissions * for the Amazon Web Services Systems Manager service principal * ssm.amazonaws.com. For more information, see Create * an IAM service role for a hybrid environment in the Amazon Web Services * Systems Manager User Guide.

You can't specify an IAM * service-linked role for this parameter. You must create a unique role.

* */ inline void SetIamRole(const Aws::String& value) { m_iamRoleHasBeenSet = true; m_iamRole = value; } /** *

The name of the Identity and Access Management (IAM) role that you want to * assign to the managed node. This IAM role must provide AssumeRole permissions * for the Amazon Web Services Systems Manager service principal * ssm.amazonaws.com. For more information, see Create * an IAM service role for a hybrid environment in the Amazon Web Services * Systems Manager User Guide.

You can't specify an IAM * service-linked role for this parameter. You must create a unique role.

* */ inline void SetIamRole(Aws::String&& value) { m_iamRoleHasBeenSet = true; m_iamRole = std::move(value); } /** *

The name of the Identity and Access Management (IAM) role that you want to * assign to the managed node. This IAM role must provide AssumeRole permissions * for the Amazon Web Services Systems Manager service principal * ssm.amazonaws.com. For more information, see Create * an IAM service role for a hybrid environment in the Amazon Web Services * Systems Manager User Guide.

You can't specify an IAM * service-linked role for this parameter. You must create a unique role.

* */ inline void SetIamRole(const char* value) { m_iamRoleHasBeenSet = true; m_iamRole.assign(value); } /** *

The name of the Identity and Access Management (IAM) role that you want to * assign to the managed node. This IAM role must provide AssumeRole permissions * for the Amazon Web Services Systems Manager service principal * ssm.amazonaws.com. For more information, see Create * an IAM service role for a hybrid environment in the Amazon Web Services * Systems Manager User Guide.

You can't specify an IAM * service-linked role for this parameter. You must create a unique role.

* */ inline UpdateManagedInstanceRoleRequest& WithIamRole(const Aws::String& value) { SetIamRole(value); return *this;} /** *

The name of the Identity and Access Management (IAM) role that you want to * assign to the managed node. This IAM role must provide AssumeRole permissions * for the Amazon Web Services Systems Manager service principal * ssm.amazonaws.com. For more information, see Create * an IAM service role for a hybrid environment in the Amazon Web Services * Systems Manager User Guide.

You can't specify an IAM * service-linked role for this parameter. You must create a unique role.

* */ inline UpdateManagedInstanceRoleRequest& WithIamRole(Aws::String&& value) { SetIamRole(std::move(value)); return *this;} /** *

The name of the Identity and Access Management (IAM) role that you want to * assign to the managed node. This IAM role must provide AssumeRole permissions * for the Amazon Web Services Systems Manager service principal * ssm.amazonaws.com. For more information, see Create * an IAM service role for a hybrid environment in the Amazon Web Services * Systems Manager User Guide.

You can't specify an IAM * service-linked role for this parameter. You must create a unique role.

* */ inline UpdateManagedInstanceRoleRequest& WithIamRole(const char* value) { SetIamRole(value); return *this;} private: Aws::String m_instanceId; bool m_instanceIdHasBeenSet = false; Aws::String m_iamRole; bool m_iamRoleHasBeenSet = false; }; } // namespace Model } // namespace SSM } // namespace Aws