/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #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 PredictorBaseline { public: AWS_FORECASTSERVICE_API PredictorBaseline(); AWS_FORECASTSERVICE_API PredictorBaseline(Aws::Utils::Json::JsonView jsonValue); AWS_FORECASTSERVICE_API PredictorBaseline& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_FORECASTSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The initial accuracy * metrics for the predictor. Use these metrics as a baseline for comparison * purposes as you use your predictor and the metrics change.

*/ inline const Aws::Vector& GetBaselineMetrics() const{ return m_baselineMetrics; } /** *

The initial accuracy * metrics for the predictor. Use these metrics as a baseline for comparison * purposes as you use your predictor and the metrics change.

*/ inline bool BaselineMetricsHasBeenSet() const { return m_baselineMetricsHasBeenSet; } /** *

The initial accuracy * metrics for the predictor. Use these metrics as a baseline for comparison * purposes as you use your predictor and the metrics change.

*/ inline void SetBaselineMetrics(const Aws::Vector& value) { m_baselineMetricsHasBeenSet = true; m_baselineMetrics = value; } /** *

The initial accuracy * metrics for the predictor. Use these metrics as a baseline for comparison * purposes as you use your predictor and the metrics change.

*/ inline void SetBaselineMetrics(Aws::Vector&& value) { m_baselineMetricsHasBeenSet = true; m_baselineMetrics = std::move(value); } /** *

The initial accuracy * metrics for the predictor. Use these metrics as a baseline for comparison * purposes as you use your predictor and the metrics change.

*/ inline PredictorBaseline& WithBaselineMetrics(const Aws::Vector& value) { SetBaselineMetrics(value); return *this;} /** *

The initial accuracy * metrics for the predictor. Use these metrics as a baseline for comparison * purposes as you use your predictor and the metrics change.

*/ inline PredictorBaseline& WithBaselineMetrics(Aws::Vector&& value) { SetBaselineMetrics(std::move(value)); return *this;} /** *

The initial accuracy * metrics for the predictor. Use these metrics as a baseline for comparison * purposes as you use your predictor and the metrics change.

*/ inline PredictorBaseline& AddBaselineMetrics(const BaselineMetric& value) { m_baselineMetricsHasBeenSet = true; m_baselineMetrics.push_back(value); return *this; } /** *

The initial accuracy * metrics for the predictor. Use these metrics as a baseline for comparison * purposes as you use your predictor and the metrics change.

*/ inline PredictorBaseline& AddBaselineMetrics(BaselineMetric&& value) { m_baselineMetricsHasBeenSet = true; m_baselineMetrics.push_back(std::move(value)); return *this; } private: Aws::Vector m_baselineMetrics; bool m_baselineMetricsHasBeenSet = false; }; } // namespace Model } // namespace ForecastService } // namespace Aws