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

The list of properties for the requested job.

*/ inline const TopicsDetectionJobProperties& GetTopicsDetectionJobProperties() const{ return m_topicsDetectionJobProperties; } /** *

The list of properties for the requested job.

*/ inline void SetTopicsDetectionJobProperties(const TopicsDetectionJobProperties& value) { m_topicsDetectionJobProperties = value; } /** *

The list of properties for the requested job.

*/ inline void SetTopicsDetectionJobProperties(TopicsDetectionJobProperties&& value) { m_topicsDetectionJobProperties = std::move(value); } /** *

The list of properties for the requested job.

*/ inline DescribeTopicsDetectionJobResult& WithTopicsDetectionJobProperties(const TopicsDetectionJobProperties& value) { SetTopicsDetectionJobProperties(value); return *this;} /** *

The list of properties for the requested job.

*/ inline DescribeTopicsDetectionJobResult& WithTopicsDetectionJobProperties(TopicsDetectionJobProperties&& value) { SetTopicsDetectionJobProperties(std::move(value)); return *this;} private: TopicsDetectionJobProperties m_topicsDetectionJobProperties; }; } // namespace Model } // namespace Comprehend } // namespace Aws