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

An object that describes the properties associated with the document * classification job.

*/ inline const DocumentClassificationJobProperties& GetDocumentClassificationJobProperties() const{ return m_documentClassificationJobProperties; } /** *

An object that describes the properties associated with the document * classification job.

*/ inline void SetDocumentClassificationJobProperties(const DocumentClassificationJobProperties& value) { m_documentClassificationJobProperties = value; } /** *

An object that describes the properties associated with the document * classification job.

*/ inline void SetDocumentClassificationJobProperties(DocumentClassificationJobProperties&& value) { m_documentClassificationJobProperties = std::move(value); } /** *

An object that describes the properties associated with the document * classification job.

*/ inline DescribeDocumentClassificationJobResult& WithDocumentClassificationJobProperties(const DocumentClassificationJobProperties& value) { SetDocumentClassificationJobProperties(value); return *this;} /** *

An object that describes the properties associated with the document * classification job.

*/ inline DescribeDocumentClassificationJobResult& WithDocumentClassificationJobProperties(DocumentClassificationJobProperties&& value) { SetDocumentClassificationJobProperties(std::move(value)); return *this;} private: DocumentClassificationJobProperties m_documentClassificationJobProperties; }; } // namespace Model } // namespace Comprehend } // namespace Aws