73 lines
2.3 KiB
C++
73 lines
2.3 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/DocumentClassifierProperties.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 DescribeDocumentClassifierResult
|
|
{
|
|
public:
|
|
DescribeDocumentClassifierResult();
|
|
DescribeDocumentClassifierResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DescribeDocumentClassifierResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>An object that contains the properties associated with a document
|
|
* classifier.</p>
|
|
*/
|
|
inline const DocumentClassifierProperties& GetDocumentClassifierProperties() const{ return m_documentClassifierProperties; }
|
|
|
|
/**
|
|
* <p>An object that contains the properties associated with a document
|
|
* classifier.</p>
|
|
*/
|
|
inline void SetDocumentClassifierProperties(const DocumentClassifierProperties& value) { m_documentClassifierProperties = value; }
|
|
|
|
/**
|
|
* <p>An object that contains the properties associated with a document
|
|
* classifier.</p>
|
|
*/
|
|
inline void SetDocumentClassifierProperties(DocumentClassifierProperties&& value) { m_documentClassifierProperties = std::move(value); }
|
|
|
|
/**
|
|
* <p>An object that contains the properties associated with a document
|
|
* classifier.</p>
|
|
*/
|
|
inline DescribeDocumentClassifierResult& WithDocumentClassifierProperties(const DocumentClassifierProperties& value) { SetDocumentClassifierProperties(value); return *this;}
|
|
|
|
/**
|
|
* <p>An object that contains the properties associated with a document
|
|
* classifier.</p>
|
|
*/
|
|
inline DescribeDocumentClassifierResult& WithDocumentClassifierProperties(DocumentClassifierProperties&& value) { SetDocumentClassifierProperties(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
DocumentClassifierProperties m_documentClassifierProperties;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Comprehend
|
|
} // namespace Aws
|