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

The properties of a listed FHIR import jobs, including the ID, ARN, name, * and the status of the job.

*/ inline const Aws::Vector& GetImportJobPropertiesList() const{ return m_importJobPropertiesList; } /** *

The properties of a listed FHIR import jobs, including the ID, ARN, name, * and the status of the job.

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

The properties of a listed FHIR import jobs, including the ID, ARN, name, * and the status of the job.

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

The properties of a listed FHIR import jobs, including the ID, ARN, name, * and the status of the job.

*/ inline ListFHIRImportJobsResult& WithImportJobPropertiesList(const Aws::Vector& value) { SetImportJobPropertiesList(value); return *this;} /** *

The properties of a listed FHIR import jobs, including the ID, ARN, name, * and the status of the job.

*/ inline ListFHIRImportJobsResult& WithImportJobPropertiesList(Aws::Vector&& value) { SetImportJobPropertiesList(std::move(value)); return *this;} /** *

The properties of a listed FHIR import jobs, including the ID, ARN, name, * and the status of the job.

*/ inline ListFHIRImportJobsResult& AddImportJobPropertiesList(const ImportJobProperties& value) { m_importJobPropertiesList.push_back(value); return *this; } /** *

The properties of a listed FHIR import jobs, including the ID, ARN, name, * and the status of the job.

*/ inline ListFHIRImportJobsResult& AddImportJobPropertiesList(ImportJobProperties&& value) { m_importJobPropertiesList.push_back(std::move(value)); return *this; } /** *

A pagination token used to identify the next page of results to return for a * ListFHIRImportJobs query.

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

A pagination token used to identify the next page of results to return for a * ListFHIRImportJobs query.

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

A pagination token used to identify the next page of results to return for a * ListFHIRImportJobs query.

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

A pagination token used to identify the next page of results to return for a * ListFHIRImportJobs query.

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

A pagination token used to identify the next page of results to return for a * ListFHIRImportJobs query.

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

A pagination token used to identify the next page of results to return for a * ListFHIRImportJobs query.

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

A pagination token used to identify the next page of results to return for a * ListFHIRImportJobs query.

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