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

An object that contains the properties associated with an entities detection * job.

*/ inline const EntitiesDetectionJobProperties& GetEntitiesDetectionJobProperties() const{ return m_entitiesDetectionJobProperties; } /** *

An object that contains the properties associated with an entities detection * job.

*/ inline void SetEntitiesDetectionJobProperties(const EntitiesDetectionJobProperties& value) { m_entitiesDetectionJobProperties = value; } /** *

An object that contains the properties associated with an entities detection * job.

*/ inline void SetEntitiesDetectionJobProperties(EntitiesDetectionJobProperties&& value) { m_entitiesDetectionJobProperties = std::move(value); } /** *

An object that contains the properties associated with an entities detection * job.

*/ inline DescribeEntitiesDetectionJobResult& WithEntitiesDetectionJobProperties(const EntitiesDetectionJobProperties& value) { SetEntitiesDetectionJobProperties(value); return *this;} /** *

An object that contains the properties associated with an entities detection * job.

*/ inline DescribeEntitiesDetectionJobResult& WithEntitiesDetectionJobProperties(EntitiesDetectionJobProperties&& value) { SetEntitiesDetectionJobProperties(std::move(value)); return *this;} private: EntitiesDetectionJobProperties m_entitiesDetectionJobProperties; }; } // namespace Model } // namespace Comprehend } // namespace Aws