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

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

*/ inline const SentimentDetectionJobProperties& GetSentimentDetectionJobProperties() const{ return m_sentimentDetectionJobProperties; } /** *

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

*/ inline void SetSentimentDetectionJobProperties(const SentimentDetectionJobProperties& value) { m_sentimentDetectionJobProperties = value; } /** *

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

*/ inline void SetSentimentDetectionJobProperties(SentimentDetectionJobProperties&& value) { m_sentimentDetectionJobProperties = std::move(value); } /** *

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

*/ inline DescribeSentimentDetectionJobResult& WithSentimentDetectionJobProperties(const SentimentDetectionJobProperties& value) { SetSentimentDetectionJobProperties(value); return *this;} /** *

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

*/ inline DescribeSentimentDetectionJobResult& WithSentimentDetectionJobProperties(SentimentDetectionJobProperties&& value) { SetSentimentDetectionJobProperties(std::move(value)); return *this;} private: SentimentDetectionJobProperties m_sentimentDetectionJobProperties; }; } // namespace Model } // namespace Comprehend } // namespace Aws