/** * 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 DataSync { namespace Model { /** *

UpdateAgentRequest

See Also:

AWS * API Reference

*/ class UpdateAgentRequest : public DataSyncRequest { public: AWS_DATASYNC_API UpdateAgentRequest(); // 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 "UpdateAgent"; } AWS_DATASYNC_API Aws::String SerializePayload() const override; AWS_DATASYNC_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Resource Name (ARN) of the agent to update.

*/ inline const Aws::String& GetAgentArn() const{ return m_agentArn; } /** *

The Amazon Resource Name (ARN) of the agent to update.

*/ inline bool AgentArnHasBeenSet() const { return m_agentArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the agent to update.

*/ inline void SetAgentArn(const Aws::String& value) { m_agentArnHasBeenSet = true; m_agentArn = value; } /** *

The Amazon Resource Name (ARN) of the agent to update.

*/ inline void SetAgentArn(Aws::String&& value) { m_agentArnHasBeenSet = true; m_agentArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the agent to update.

*/ inline void SetAgentArn(const char* value) { m_agentArnHasBeenSet = true; m_agentArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the agent to update.

*/ inline UpdateAgentRequest& WithAgentArn(const Aws::String& value) { SetAgentArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the agent to update.

*/ inline UpdateAgentRequest& WithAgentArn(Aws::String&& value) { SetAgentArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the agent to update.

*/ inline UpdateAgentRequest& WithAgentArn(const char* value) { SetAgentArn(value); return *this;} /** *

The name that you want to use to configure the agent.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name that you want to use to configure the agent.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name that you want to use to configure the agent.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name that you want to use to configure the agent.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name that you want to use to configure the agent.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name that you want to use to configure the agent.

*/ inline UpdateAgentRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name that you want to use to configure the agent.

*/ inline UpdateAgentRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name that you want to use to configure the agent.

*/ inline UpdateAgentRequest& WithName(const char* value) { SetName(value); return *this;} private: Aws::String m_agentArn; bool m_agentArnHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; }; } // namespace Model } // namespace DataSync } // namespace Aws