/** * 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 DescribePHIDetectionJobResult { public: DescribePHIDetectionJobResult(); DescribePHIDetectionJobResult(const Aws::AmazonWebServiceResult& result); DescribePHIDetectionJobResult& 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 DescribePHIDetectionJobResult& WithComprehendMedicalAsyncJobProperties(const ComprehendMedicalAsyncJobProperties& value) { SetComprehendMedicalAsyncJobProperties(value); return *this;} /** *

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

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