/** * 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 Comprehend { namespace Model { class DescribeEntitiesDetectionJobResult { public: AWS_COMPREHEND_API DescribeEntitiesDetectionJobResult(); AWS_COMPREHEND_API DescribeEntitiesDetectionJobResult(const Aws::AmazonWebServiceResult& result); AWS_COMPREHEND_API 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;} 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 DescribeEntitiesDetectionJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeEntitiesDetectionJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeEntitiesDetectionJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: EntitiesDetectionJobProperties m_entitiesDetectionJobProperties; Aws::String m_requestId; }; } // namespace Model } // namespace Comprehend } // namespace Aws