/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include DescribeTaskRequestSee Also:
AWS
* API Reference
Specifies the Amazon Resource Name (ARN) of the transfer task.
*/ inline const Aws::String& GetTaskArn() const{ return m_taskArn; } /** *Specifies the Amazon Resource Name (ARN) of the transfer task.
*/ inline bool TaskArnHasBeenSet() const { return m_taskArnHasBeenSet; } /** *Specifies the Amazon Resource Name (ARN) of the transfer task.
*/ inline void SetTaskArn(const Aws::String& value) { m_taskArnHasBeenSet = true; m_taskArn = value; } /** *Specifies the Amazon Resource Name (ARN) of the transfer task.
*/ inline void SetTaskArn(Aws::String&& value) { m_taskArnHasBeenSet = true; m_taskArn = std::move(value); } /** *Specifies the Amazon Resource Name (ARN) of the transfer task.
*/ inline void SetTaskArn(const char* value) { m_taskArnHasBeenSet = true; m_taskArn.assign(value); } /** *Specifies the Amazon Resource Name (ARN) of the transfer task.
*/ inline DescribeTaskRequest& WithTaskArn(const Aws::String& value) { SetTaskArn(value); return *this;} /** *Specifies the Amazon Resource Name (ARN) of the transfer task.
*/ inline DescribeTaskRequest& WithTaskArn(Aws::String&& value) { SetTaskArn(std::move(value)); return *this;} /** *Specifies the Amazon Resource Name (ARN) of the transfer task.
*/ inline DescribeTaskRequest& WithTaskArn(const char* value) { SetTaskArn(value); return *this;} private: Aws::String m_taskArn; bool m_taskArnHasBeenSet = false; }; } // namespace Model } // namespace DataSync } // namespace Aws