/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace ForecastService { namespace Model { /** *

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

*/ class Baseline { public: AWS_FORECASTSERVICE_API Baseline(); AWS_FORECASTSERVICE_API Baseline(Aws::Utils::Json::JsonView jsonValue); AWS_FORECASTSERVICE_API Baseline& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_FORECASTSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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