/** * 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 { /** *

ListTaskExecutions

See Also:

AWS * API Reference

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

The Amazon Resource Name (ARN) of the task whose tasks you want to list.

*/ inline const Aws::String& GetTaskArn() const{ return m_taskArn; } /** *

The Amazon Resource Name (ARN) of the task whose tasks you want to list.

*/ inline bool TaskArnHasBeenSet() const { return m_taskArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the task whose tasks you want to list.

*/ inline void SetTaskArn(const Aws::String& value) { m_taskArnHasBeenSet = true; m_taskArn = value; } /** *

The Amazon Resource Name (ARN) of the task whose tasks you want to list.

*/ inline void SetTaskArn(Aws::String&& value) { m_taskArnHasBeenSet = true; m_taskArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the task whose tasks you want to list.

*/ inline void SetTaskArn(const char* value) { m_taskArnHasBeenSet = true; m_taskArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the task whose tasks you want to list.

*/ inline ListTaskExecutionsRequest& WithTaskArn(const Aws::String& value) { SetTaskArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the task whose tasks you want to list.

*/ inline ListTaskExecutionsRequest& WithTaskArn(Aws::String&& value) { SetTaskArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the task whose tasks you want to list.

*/ inline ListTaskExecutionsRequest& WithTaskArn(const char* value) { SetTaskArn(value); return *this;} /** *

The maximum number of executed tasks to list.

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

The maximum number of executed tasks to list.

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

The maximum number of executed tasks to list.

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

The maximum number of executed tasks to list.

*/ inline ListTaskExecutionsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

An opaque string that indicates the position at which to begin the next list * of the executed tasks.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

An opaque string that indicates the position at which to begin the next list * of the executed tasks.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

An opaque string that indicates the position at which to begin the next list * of the executed tasks.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

An opaque string that indicates the position at which to begin the next list * of the executed tasks.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

An opaque string that indicates the position at which to begin the next list * of the executed tasks.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

An opaque string that indicates the position at which to begin the next list * of the executed tasks.

*/ inline ListTaskExecutionsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

An opaque string that indicates the position at which to begin the next list * of the executed tasks.

*/ inline ListTaskExecutionsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

An opaque string that indicates the position at which to begin the next list * of the executed tasks.

*/ inline ListTaskExecutionsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::String m_taskArn; bool m_taskArnHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace DataSync } // namespace Aws