/**
* 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
{
/**
* DeleteAgentRequest
See Also:
AWS
* API Reference
*/
class DeleteAgentRequest : public DataSyncRequest
{
public:
AWS_DATASYNC_API DeleteAgentRequest();
// 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 "DeleteAgent"; }
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 delete. Use the
* ListAgents
operation to return a list of agents for your account
* and Amazon Web Services Region.
*/
inline const Aws::String& GetAgentArn() const{ return m_agentArn; }
/**
* The Amazon Resource Name (ARN) of the agent to delete. Use the
* ListAgents
operation to return a list of agents for your account
* and Amazon Web Services Region.
*/
inline bool AgentArnHasBeenSet() const { return m_agentArnHasBeenSet; }
/**
* The Amazon Resource Name (ARN) of the agent to delete. Use the
* ListAgents
operation to return a list of agents for your account
* and Amazon Web Services Region.
*/
inline void SetAgentArn(const Aws::String& value) { m_agentArnHasBeenSet = true; m_agentArn = value; }
/**
* The Amazon Resource Name (ARN) of the agent to delete. Use the
* ListAgents
operation to return a list of agents for your account
* and Amazon Web Services Region.
*/
inline void SetAgentArn(Aws::String&& value) { m_agentArnHasBeenSet = true; m_agentArn = std::move(value); }
/**
* The Amazon Resource Name (ARN) of the agent to delete. Use the
* ListAgents
operation to return a list of agents for your account
* and Amazon Web Services Region.
*/
inline void SetAgentArn(const char* value) { m_agentArnHasBeenSet = true; m_agentArn.assign(value); }
/**
* The Amazon Resource Name (ARN) of the agent to delete. Use the
* ListAgents
operation to return a list of agents for your account
* and Amazon Web Services Region.
*/
inline DeleteAgentRequest& WithAgentArn(const Aws::String& value) { SetAgentArn(value); return *this;}
/**
* The Amazon Resource Name (ARN) of the agent to delete. Use the
* ListAgents
operation to return a list of agents for your account
* and Amazon Web Services Region.
*/
inline DeleteAgentRequest& WithAgentArn(Aws::String&& value) { SetAgentArn(std::move(value)); return *this;}
/**
* The Amazon Resource Name (ARN) of the agent to delete. Use the
* ListAgents
operation to return a list of agents for your account
* and Amazon Web Services Region.
*/
inline DeleteAgentRequest& WithAgentArn(const char* value) { SetAgentArn(value); return *this;}
private:
Aws::String m_agentArn;
bool m_agentArnHasBeenSet = false;
};
} // namespace Model
} // namespace DataSync
} // namespace Aws