/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Metrics you can use as a baseline for comparison purposes. Use these metrics
* when you interpret monitoring results for an auto predictor.See
* Also:
AWS
* API Reference
The initial accuracy * metrics for the predictor you are monitoring. Use these metrics as a * baseline for comparison purposes as you use your predictor and the metrics * change.
*/ inline const PredictorBaseline& GetPredictorBaseline() const{ return m_predictorBaseline; } /** *The initial accuracy * metrics for the predictor you are monitoring. Use these metrics as a * baseline for comparison purposes as you use your predictor and the metrics * change.
*/ inline bool PredictorBaselineHasBeenSet() const { return m_predictorBaselineHasBeenSet; } /** *The initial accuracy * metrics for the predictor you are monitoring. Use these metrics as a * baseline for comparison purposes as you use your predictor and the metrics * change.
*/ inline void SetPredictorBaseline(const PredictorBaseline& value) { m_predictorBaselineHasBeenSet = true; m_predictorBaseline = value; } /** *The initial accuracy * metrics for the predictor you are monitoring. Use these metrics as a * baseline for comparison purposes as you use your predictor and the metrics * change.
*/ inline void SetPredictorBaseline(PredictorBaseline&& value) { m_predictorBaselineHasBeenSet = true; m_predictorBaseline = std::move(value); } /** *The initial accuracy * metrics for the predictor you are monitoring. Use these metrics as a * baseline for comparison purposes as you use your predictor and the metrics * change.
*/ inline Baseline& WithPredictorBaseline(const PredictorBaseline& value) { SetPredictorBaseline(value); return *this;} /** *The initial accuracy * metrics for the predictor you are monitoring. Use these metrics as a * baseline for comparison purposes as you use your predictor and the metrics * change.
*/ inline Baseline& WithPredictorBaseline(PredictorBaseline&& value) { SetPredictorBaseline(std::move(value)); return *this;} private: PredictorBaseline m_predictorBaseline; bool m_predictorBaselineHasBeenSet = false; }; } // namespace Model } // namespace ForecastService } // namespace Aws