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

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

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

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

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

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

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

List of created artifacts up to the maximum number of results specified in * the request.

*/ inline const Aws::Vector& GetCreatedArtifactList() const{ return m_createdArtifactList; } /** *

List of created artifacts up to the maximum number of results specified in * the request.

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

List of created artifacts up to the maximum number of results specified in * the request.

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

List of created artifacts up to the maximum number of results specified in * the request.

*/ inline ListCreatedArtifactsResult& WithCreatedArtifactList(const Aws::Vector& value) { SetCreatedArtifactList(value); return *this;} /** *

List of created artifacts up to the maximum number of results specified in * the request.

*/ inline ListCreatedArtifactsResult& WithCreatedArtifactList(Aws::Vector&& value) { SetCreatedArtifactList(std::move(value)); return *this;} /** *

List of created artifacts up to the maximum number of results specified in * the request.

*/ inline ListCreatedArtifactsResult& AddCreatedArtifactList(const CreatedArtifact& value) { m_createdArtifactList.push_back(value); return *this; } /** *

List of created artifacts up to the maximum number of results specified in * the request.

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