/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ComprehendMedical { namespace Model { class AWS_COMPREHENDMEDICAL_API DescribeICD10CMInferenceJobResult { public: DescribeICD10CMInferenceJobResult(); DescribeICD10CMInferenceJobResult(const Aws::AmazonWebServiceResult& result); DescribeICD10CMInferenceJobResult& 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 DescribeICD10CMInferenceJobResult& WithComprehendMedicalAsyncJobProperties(const ComprehendMedicalAsyncJobProperties& value) { SetComprehendMedicalAsyncJobProperties(value); return *this;} /** *

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

*/ inline DescribeICD10CMInferenceJobResult& WithComprehendMedicalAsyncJobProperties(ComprehendMedicalAsyncJobProperties&& value) { SetComprehendMedicalAsyncJobProperties(std::move(value)); return *this;} private: ComprehendMedicalAsyncJobProperties m_comprehendMedicalAsyncJobProperties; }; } // namespace Model } // namespace ComprehendMedical } // namespace Aws