/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include DescribeAgentSee Also:
AWS
* API Reference
Specifies the Amazon Resource Name (ARN) of the DataSync agent to * describe.
*/ inline const Aws::String& GetAgentArn() const{ return m_agentArn; } /** *Specifies the Amazon Resource Name (ARN) of the DataSync agent to * describe.
*/ inline bool AgentArnHasBeenSet() const { return m_agentArnHasBeenSet; } /** *Specifies the Amazon Resource Name (ARN) of the DataSync agent to * describe.
*/ inline void SetAgentArn(const Aws::String& value) { m_agentArnHasBeenSet = true; m_agentArn = value; } /** *Specifies the Amazon Resource Name (ARN) of the DataSync agent to * describe.
*/ inline void SetAgentArn(Aws::String&& value) { m_agentArnHasBeenSet = true; m_agentArn = std::move(value); } /** *Specifies the Amazon Resource Name (ARN) of the DataSync agent to * describe.
*/ inline void SetAgentArn(const char* value) { m_agentArnHasBeenSet = true; m_agentArn.assign(value); } /** *Specifies the Amazon Resource Name (ARN) of the DataSync agent to * describe.
*/ inline DescribeAgentRequest& WithAgentArn(const Aws::String& value) { SetAgentArn(value); return *this;} /** *Specifies the Amazon Resource Name (ARN) of the DataSync agent to * describe.
*/ inline DescribeAgentRequest& WithAgentArn(Aws::String&& value) { SetAgentArn(std::move(value)); return *this;} /** *Specifies the Amazon Resource Name (ARN) of the DataSync agent to * describe.
*/ inline DescribeAgentRequest& WithAgentArn(const char* value) { SetAgentArn(value); return *this;} private: Aws::String m_agentArn; bool m_agentArnHasBeenSet = false; }; } // namespace Model } // namespace DataSync } // namespace Aws