/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include DescribeTaskExecutionRequestSee Also:
AWS
* API Reference
Specifies the Amazon Resource Name (ARN) of the transfer task that's * running.
*/ inline const Aws::String& GetTaskExecutionArn() const{ return m_taskExecutionArn; } /** *Specifies the Amazon Resource Name (ARN) of the transfer task that's * running.
*/ inline bool TaskExecutionArnHasBeenSet() const { return m_taskExecutionArnHasBeenSet; } /** *Specifies the Amazon Resource Name (ARN) of the transfer task that's * running.
*/ inline void SetTaskExecutionArn(const Aws::String& value) { m_taskExecutionArnHasBeenSet = true; m_taskExecutionArn = value; } /** *Specifies the Amazon Resource Name (ARN) of the transfer task that's * running.
*/ inline void SetTaskExecutionArn(Aws::String&& value) { m_taskExecutionArnHasBeenSet = true; m_taskExecutionArn = std::move(value); } /** *Specifies the Amazon Resource Name (ARN) of the transfer task that's * running.
*/ inline void SetTaskExecutionArn(const char* value) { m_taskExecutionArnHasBeenSet = true; m_taskExecutionArn.assign(value); } /** *Specifies the Amazon Resource Name (ARN) of the transfer task that's * running.
*/ inline DescribeTaskExecutionRequest& WithTaskExecutionArn(const Aws::String& value) { SetTaskExecutionArn(value); return *this;} /** *Specifies the Amazon Resource Name (ARN) of the transfer task that's * running.
*/ inline DescribeTaskExecutionRequest& WithTaskExecutionArn(Aws::String&& value) { SetTaskExecutionArn(std::move(value)); return *this;} /** *Specifies the Amazon Resource Name (ARN) of the transfer task that's * running.
*/ inline DescribeTaskExecutionRequest& WithTaskExecutionArn(const char* value) { SetTaskExecutionArn(value); return *this;} private: Aws::String m_taskExecutionArn; bool m_taskExecutionArnHasBeenSet = false; }; } // namespace Model } // namespace DataSync } // namespace Aws