68 lines
1.6 KiB
C
68 lines
1.6 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/glue/Glue_EXPORTS.h>
|
|||
|
|
#include <aws/glue/model/Classifier.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace Glue
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_GLUE_API GetClassifierResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
GetClassifierResult();
|
|||
|
|
GetClassifierResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
GetClassifierResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The requested classifier.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Classifier& GetClassifier() const{ return m_classifier; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The requested classifier.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetClassifier(const Classifier& value) { m_classifier = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The requested classifier.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetClassifier(Classifier&& value) { m_classifier = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The requested classifier.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetClassifierResult& WithClassifier(const Classifier& value) { SetClassifier(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The requested classifier.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetClassifierResult& WithClassifier(Classifier&& value) { SetClassifier(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Classifier m_classifier;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Glue
|
|||
|
|
} // namespace Aws
|