/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace HealthLake { namespace Model { class DescribeFHIRExportJobResult { public: AWS_HEALTHLAKE_API DescribeFHIRExportJobResult(); AWS_HEALTHLAKE_API DescribeFHIRExportJobResult(const Aws::AmazonWebServiceResult& result); AWS_HEALTHLAKE_API DescribeFHIRExportJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Displays the properties of the export job, including the ID, Arn, Name, and * the status of the job.

*/ inline const ExportJobProperties& GetExportJobProperties() const{ return m_exportJobProperties; } /** *

Displays the properties of the export job, including the ID, Arn, Name, and * the status of the job.

*/ inline void SetExportJobProperties(const ExportJobProperties& value) { m_exportJobProperties = value; } /** *

Displays the properties of the export job, including the ID, Arn, Name, and * the status of the job.

*/ inline void SetExportJobProperties(ExportJobProperties&& value) { m_exportJobProperties = std::move(value); } /** *

Displays the properties of the export job, including the ID, Arn, Name, and * the status of the job.

*/ inline DescribeFHIRExportJobResult& WithExportJobProperties(const ExportJobProperties& value) { SetExportJobProperties(value); return *this;} /** *

Displays the properties of the export job, including the ID, Arn, Name, and * the status of the job.

*/ inline DescribeFHIRExportJobResult& WithExportJobProperties(ExportJobProperties&& value) { SetExportJobProperties(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 DescribeFHIRExportJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeFHIRExportJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeFHIRExportJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ExportJobProperties m_exportJobProperties; Aws::String m_requestId; }; } // namespace Model } // namespace HealthLake } // namespace Aws