/** * 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 MachineLearning { namespace Model { class AWS_MACHINELEARNING_API PredictResult { public: PredictResult(); PredictResult(const Aws::AmazonWebServiceResult& result); PredictResult& operator=(const Aws::AmazonWebServiceResult& result); inline const Prediction& GetPrediction() const{ return m_prediction; } inline void SetPrediction(const Prediction& value) { m_prediction = value; } inline void SetPrediction(Prediction&& value) { m_prediction = std::move(value); } inline PredictResult& WithPrediction(const Prediction& value) { SetPrediction(value); return *this;} inline PredictResult& WithPrediction(Prediction&& value) { SetPrediction(std::move(value)); return *this;} private: Prediction m_prediction; }; } // namespace Model } // namespace MachineLearning } // namespace Aws