/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A GetPredictiveScalingForecast
call returns the load forecast
* for a predictive scaling policy. This structure includes the data points for
* that load forecast, along with the timestamps of those data points and the
* metric specification. See Also:
AWS
* API Reference
The timestamps for the data points, in UTC format.
*/ inline const Aws::VectorThe timestamps for the data points, in UTC format.
*/ inline bool TimestampsHasBeenSet() const { return m_timestampsHasBeenSet; } /** *The timestamps for the data points, in UTC format.
*/ inline void SetTimestamps(const Aws::VectorThe timestamps for the data points, in UTC format.
*/ inline void SetTimestamps(Aws::VectorThe timestamps for the data points, in UTC format.
*/ inline LoadForecast& WithTimestamps(const Aws::VectorThe timestamps for the data points, in UTC format.
*/ inline LoadForecast& WithTimestamps(Aws::VectorThe timestamps for the data points, in UTC format.
*/ inline LoadForecast& AddTimestamps(const Aws::Utils::DateTime& value) { m_timestampsHasBeenSet = true; m_timestamps.push_back(value); return *this; } /** *The timestamps for the data points, in UTC format.
*/ inline LoadForecast& AddTimestamps(Aws::Utils::DateTime&& value) { m_timestampsHasBeenSet = true; m_timestamps.push_back(std::move(value)); return *this; } /** *The values of the data points.
*/ inline const Aws::VectorThe values of the data points.
*/ inline bool ValuesHasBeenSet() const { return m_valuesHasBeenSet; } /** *The values of the data points.
*/ inline void SetValues(const Aws::VectorThe values of the data points.
*/ inline void SetValues(Aws::VectorThe values of the data points.
*/ inline LoadForecast& WithValues(const Aws::VectorThe values of the data points.
*/ inline LoadForecast& WithValues(Aws::VectorThe values of the data points.
*/ inline LoadForecast& AddValues(double value) { m_valuesHasBeenSet = true; m_values.push_back(value); return *this; } /** *The metric specification for the load forecast.
*/ inline const PredictiveScalingMetricSpecification& GetMetricSpecification() const{ return m_metricSpecification; } /** *The metric specification for the load forecast.
*/ inline bool MetricSpecificationHasBeenSet() const { return m_metricSpecificationHasBeenSet; } /** *The metric specification for the load forecast.
*/ inline void SetMetricSpecification(const PredictiveScalingMetricSpecification& value) { m_metricSpecificationHasBeenSet = true; m_metricSpecification = value; } /** *The metric specification for the load forecast.
*/ inline void SetMetricSpecification(PredictiveScalingMetricSpecification&& value) { m_metricSpecificationHasBeenSet = true; m_metricSpecification = std::move(value); } /** *The metric specification for the load forecast.
*/ inline LoadForecast& WithMetricSpecification(const PredictiveScalingMetricSpecification& value) { SetMetricSpecification(value); return *this;} /** *The metric specification for the load forecast.
*/ inline LoadForecast& WithMetricSpecification(PredictiveScalingMetricSpecification&& value) { SetMetricSpecification(std::move(value)); return *this;} private: Aws::Vector