/** * 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 EntityResolution { namespace Model { class ListMatchingJobsResult { public: AWS_ENTITYRESOLUTION_API ListMatchingJobsResult(); AWS_ENTITYRESOLUTION_API ListMatchingJobsResult(const Aws::AmazonWebServiceResult& result); AWS_ENTITYRESOLUTION_API ListMatchingJobsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list of JobSummary objects, each of which contain the ID, status, start * time, and end time of a job.

*/ inline const Aws::Vector& GetJobs() const{ return m_jobs; } /** *

A list of JobSummary objects, each of which contain the ID, status, start * time, and end time of a job.

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

A list of JobSummary objects, each of which contain the ID, status, start * time, and end time of a job.

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

A list of JobSummary objects, each of which contain the ID, status, start * time, and end time of a job.

*/ inline ListMatchingJobsResult& WithJobs(const Aws::Vector& value) { SetJobs(value); return *this;} /** *

A list of JobSummary objects, each of which contain the ID, status, start * time, and end time of a job.

*/ inline ListMatchingJobsResult& WithJobs(Aws::Vector&& value) { SetJobs(std::move(value)); return *this;} /** *

A list of JobSummary objects, each of which contain the ID, status, start * time, and end time of a job.

*/ inline ListMatchingJobsResult& AddJobs(const JobSummary& value) { m_jobs.push_back(value); return *this; } /** *

A list of JobSummary objects, each of which contain the ID, status, start * time, and end time of a job.

*/ inline ListMatchingJobsResult& AddJobs(JobSummary&& value) { m_jobs.push_back(std::move(value)); return *this; } /** *

The pagination token from the previous ListSchemaMappings API * call.

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

The pagination token from the previous ListSchemaMappings API * call.

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

The pagination token from the previous ListSchemaMappings API * call.

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

The pagination token from the previous ListSchemaMappings API * call.

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

The pagination token from the previous ListSchemaMappings API * call.

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

The pagination token from the previous ListSchemaMappings API * call.

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

The pagination token from the previous ListSchemaMappings API * call.

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