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

An object that contains the properties associated with a detection job.

*/ inline const ComprehendMedicalAsyncJobProperties& GetComprehendMedicalAsyncJobProperties() const{ return m_comprehendMedicalAsyncJobProperties; } /** *

An object that contains the properties associated with a detection job.

*/ inline void SetComprehendMedicalAsyncJobProperties(const ComprehendMedicalAsyncJobProperties& value) { m_comprehendMedicalAsyncJobProperties = value; } /** *

An object that contains the properties associated with a detection job.

*/ inline void SetComprehendMedicalAsyncJobProperties(ComprehendMedicalAsyncJobProperties&& value) { m_comprehendMedicalAsyncJobProperties = std::move(value); } /** *

An object that contains the properties associated with a detection job.

*/ inline DescribeRxNormInferenceJobResult& WithComprehendMedicalAsyncJobProperties(const ComprehendMedicalAsyncJobProperties& value) { SetComprehendMedicalAsyncJobProperties(value); return *this;} /** *

An object that contains the properties associated with a detection job.

*/ inline DescribeRxNormInferenceJobResult& WithComprehendMedicalAsyncJobProperties(ComprehendMedicalAsyncJobProperties&& value) { SetComprehendMedicalAsyncJobProperties(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 DescribeRxNormInferenceJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeRxNormInferenceJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeRxNormInferenceJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ComprehendMedicalAsyncJobProperties m_comprehendMedicalAsyncJobProperties; Aws::String m_requestId; }; } // namespace Model } // namespace ComprehendMedical } // namespace Aws