/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace MigrationHub { namespace Model { class ListMigrationTasksResult { public: AWS_MIGRATIONHUB_API ListMigrationTasksResult(); AWS_MIGRATIONHUB_API ListMigrationTasksResult(const Aws::AmazonWebServiceResult& result); AWS_MIGRATIONHUB_API ListMigrationTasksResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

If there are more migration tasks than the max result, return the next token * to be passed to the next call as a bookmark of where to start from.

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

If there are more migration tasks than the max result, return the next token * to be passed to the next call as a bookmark of where to start from.

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

If there are more migration tasks than the max result, return the next token * to be passed to the next call as a bookmark of where to start from.

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

If there are more migration tasks than the max result, return the next token * to be passed to the next call as a bookmark of where to start from.

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

If there are more migration tasks than the max result, return the next token * to be passed to the next call as a bookmark of where to start from.

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

If there are more migration tasks than the max result, return the next token * to be passed to the next call as a bookmark of where to start from.

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

If there are more migration tasks than the max result, return the next token * to be passed to the next call as a bookmark of where to start from.

*/ inline ListMigrationTasksResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

Lists the migration task's summary which includes: * MigrationTaskName, ProgressPercent, * ProgressUpdateStream, Status, and the * UpdateDateTime for each task.

*/ inline const Aws::Vector& GetMigrationTaskSummaryList() const{ return m_migrationTaskSummaryList; } /** *

Lists the migration task's summary which includes: * MigrationTaskName, ProgressPercent, * ProgressUpdateStream, Status, and the * UpdateDateTime for each task.

*/ inline void SetMigrationTaskSummaryList(const Aws::Vector& value) { m_migrationTaskSummaryList = value; } /** *

Lists the migration task's summary which includes: * MigrationTaskName, ProgressPercent, * ProgressUpdateStream, Status, and the * UpdateDateTime for each task.

*/ inline void SetMigrationTaskSummaryList(Aws::Vector&& value) { m_migrationTaskSummaryList = std::move(value); } /** *

Lists the migration task's summary which includes: * MigrationTaskName, ProgressPercent, * ProgressUpdateStream, Status, and the * UpdateDateTime for each task.

*/ inline ListMigrationTasksResult& WithMigrationTaskSummaryList(const Aws::Vector& value) { SetMigrationTaskSummaryList(value); return *this;} /** *

Lists the migration task's summary which includes: * MigrationTaskName, ProgressPercent, * ProgressUpdateStream, Status, and the * UpdateDateTime for each task.

*/ inline ListMigrationTasksResult& WithMigrationTaskSummaryList(Aws::Vector&& value) { SetMigrationTaskSummaryList(std::move(value)); return *this;} /** *

Lists the migration task's summary which includes: * MigrationTaskName, ProgressPercent, * ProgressUpdateStream, Status, and the * UpdateDateTime for each task.

*/ inline ListMigrationTasksResult& AddMigrationTaskSummaryList(const MigrationTaskSummary& value) { m_migrationTaskSummaryList.push_back(value); return *this; } /** *

Lists the migration task's summary which includes: * MigrationTaskName, ProgressPercent, * ProgressUpdateStream, Status, and the * UpdateDateTime for each task.

*/ inline ListMigrationTasksResult& AddMigrationTaskSummaryList(MigrationTaskSummary&& value) { m_migrationTaskSummaryList.push_back(std::move(value)); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline ListMigrationTasksResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListMigrationTasksResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListMigrationTasksResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_nextToken; Aws::Vector m_migrationTaskSummaryList; Aws::String m_requestId; }; } // namespace Model } // namespace MigrationHub } // namespace Aws