/** * 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 DescribeKeyPhrasesDetectionJobResult { public: DescribeKeyPhrasesDetectionJobResult(); DescribeKeyPhrasesDetectionJobResult(const Aws::AmazonWebServiceResult& result); DescribeKeyPhrasesDetectionJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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

*/ inline const KeyPhrasesDetectionJobProperties& GetKeyPhrasesDetectionJobProperties() const{ return m_keyPhrasesDetectionJobProperties; } /** *

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

*/ inline void SetKeyPhrasesDetectionJobProperties(const KeyPhrasesDetectionJobProperties& value) { m_keyPhrasesDetectionJobProperties = value; } /** *

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

*/ inline void SetKeyPhrasesDetectionJobProperties(KeyPhrasesDetectionJobProperties&& value) { m_keyPhrasesDetectionJobProperties = std::move(value); } /** *

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

*/ inline DescribeKeyPhrasesDetectionJobResult& WithKeyPhrasesDetectionJobProperties(const KeyPhrasesDetectionJobProperties& value) { SetKeyPhrasesDetectionJobProperties(value); return *this;} /** *

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

*/ inline DescribeKeyPhrasesDetectionJobResult& WithKeyPhrasesDetectionJobProperties(KeyPhrasesDetectionJobProperties&& value) { SetKeyPhrasesDetectionJobProperties(std::move(value)); return *this;} private: KeyPhrasesDetectionJobProperties m_keyPhrasesDetectionJobProperties; }; } // namespace Model } // namespace Comprehend } // namespace Aws