/** * 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 ListProgressUpdateStreamsResult { public: AWS_MIGRATIONHUB_API ListProgressUpdateStreamsResult(); AWS_MIGRATIONHUB_API ListProgressUpdateStreamsResult(const Aws::AmazonWebServiceResult& result); AWS_MIGRATIONHUB_API ListProgressUpdateStreamsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

List of progress update streams up to the max number of results passed in the * input.

*/ inline const Aws::Vector& GetProgressUpdateStreamSummaryList() const{ return m_progressUpdateStreamSummaryList; } /** *

List of progress update streams up to the max number of results passed in the * input.

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

List of progress update streams up to the max number of results passed in the * input.

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

List of progress update streams up to the max number of results passed in the * input.

*/ inline ListProgressUpdateStreamsResult& WithProgressUpdateStreamSummaryList(const Aws::Vector& value) { SetProgressUpdateStreamSummaryList(value); return *this;} /** *

List of progress update streams up to the max number of results passed in the * input.

*/ inline ListProgressUpdateStreamsResult& WithProgressUpdateStreamSummaryList(Aws::Vector&& value) { SetProgressUpdateStreamSummaryList(std::move(value)); return *this;} /** *

List of progress update streams up to the max number of results passed in the * input.

*/ inline ListProgressUpdateStreamsResult& AddProgressUpdateStreamSummaryList(const ProgressUpdateStreamSummary& value) { m_progressUpdateStreamSummaryList.push_back(value); return *this; } /** *

List of progress update streams up to the max number of results passed in the * input.

*/ inline ListProgressUpdateStreamsResult& AddProgressUpdateStreamSummaryList(ProgressUpdateStreamSummary&& value) { m_progressUpdateStreamSummaryList.push_back(std::move(value)); return *this; } /** *

If there are more streams created 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 streams created 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 streams created 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 streams created 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 streams created than the max result, return the next token * to be passed to the next call as a bookmark of where to start from.

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

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

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

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

*/ inline ListProgressUpdateStreamsResult& WithNextToken(const char* value) { SetNextToken(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 ListProgressUpdateStreamsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListProgressUpdateStreamsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListProgressUpdateStreamsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_progressUpdateStreamSummaryList; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace MigrationHub } // namespace Aws