73 lines
2.5 KiB
C++
73 lines
2.5 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/comprehend/Comprehend_EXPORTS.h>
|
|
#include <aws/comprehend/model/DocumentClassificationJobProperties.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
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<Aws::Utils::Json::JsonValue>& result);
|
|
DescribeDocumentClassificationJobResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>An object that describes the properties associated with the document
|
|
* classification job.</p>
|
|
*/
|
|
inline const DocumentClassificationJobProperties& GetDocumentClassificationJobProperties() const{ return m_documentClassificationJobProperties; }
|
|
|
|
/**
|
|
* <p>An object that describes the properties associated with the document
|
|
* classification job.</p>
|
|
*/
|
|
inline void SetDocumentClassificationJobProperties(const DocumentClassificationJobProperties& value) { m_documentClassificationJobProperties = value; }
|
|
|
|
/**
|
|
* <p>An object that describes the properties associated with the document
|
|
* classification job.</p>
|
|
*/
|
|
inline void SetDocumentClassificationJobProperties(DocumentClassificationJobProperties&& value) { m_documentClassificationJobProperties = std::move(value); }
|
|
|
|
/**
|
|
* <p>An object that describes the properties associated with the document
|
|
* classification job.</p>
|
|
*/
|
|
inline DescribeDocumentClassificationJobResult& WithDocumentClassificationJobProperties(const DocumentClassificationJobProperties& value) { SetDocumentClassificationJobProperties(value); return *this;}
|
|
|
|
/**
|
|
* <p>An object that describes the properties associated with the document
|
|
* classification job.</p>
|
|
*/
|
|
inline DescribeDocumentClassificationJobResult& WithDocumentClassificationJobProperties(DocumentClassificationJobProperties&& value) { SetDocumentClassificationJobProperties(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
DocumentClassificationJobProperties m_documentClassificationJobProperties;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Comprehend
|
|
} // namespace Aws
|