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

The properties of the Import job request, including the ID, ARN, name, and * the status of the job.

*/ inline const ImportJobProperties& GetImportJobProperties() const{ return m_importJobProperties; } /** *

The properties of the Import job request, including the ID, ARN, name, and * the status of the job.

*/ inline void SetImportJobProperties(const ImportJobProperties& value) { m_importJobProperties = value; } /** *

The properties of the Import job request, including the ID, ARN, name, and * the status of the job.

*/ inline void SetImportJobProperties(ImportJobProperties&& value) { m_importJobProperties = std::move(value); } /** *

The properties of the Import job request, including the ID, ARN, name, and * the status of the job.

*/ inline DescribeFHIRImportJobResult& WithImportJobProperties(const ImportJobProperties& value) { SetImportJobProperties(value); return *this;} /** *

The properties of the Import job request, including the ID, ARN, name, and * the status of the job.

*/ inline DescribeFHIRImportJobResult& WithImportJobProperties(ImportJobProperties&& value) { SetImportJobProperties(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 DescribeFHIRImportJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeFHIRImportJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeFHIRImportJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ImportJobProperties m_importJobProperties; Aws::String m_requestId; }; } // namespace Model } // namespace HealthLake } // namespace Aws