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

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

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

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

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

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

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

Returned list of discovered resources associated with the given * MigrationTask.

*/ inline const Aws::Vector& GetDiscoveredResourceList() const{ return m_discoveredResourceList; } /** *

Returned list of discovered resources associated with the given * MigrationTask.

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

Returned list of discovered resources associated with the given * MigrationTask.

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

Returned list of discovered resources associated with the given * MigrationTask.

*/ inline ListDiscoveredResourcesResult& WithDiscoveredResourceList(const Aws::Vector& value) { SetDiscoveredResourceList(value); return *this;} /** *

Returned list of discovered resources associated with the given * MigrationTask.

*/ inline ListDiscoveredResourcesResult& WithDiscoveredResourceList(Aws::Vector&& value) { SetDiscoveredResourceList(std::move(value)); return *this;} /** *

Returned list of discovered resources associated with the given * MigrationTask.

*/ inline ListDiscoveredResourcesResult& AddDiscoveredResourceList(const DiscoveredResource& value) { m_discoveredResourceList.push_back(value); return *this; } /** *

Returned list of discovered resources associated with the given * MigrationTask.

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