/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A GetPredictiveScalingForecast
call returns the capacity
* forecast for a predictive scaling policy. This structure includes the data
* points for that capacity forecast, along with the timestamps of those data
* points. 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 CapacityForecast& WithTimestamps(const Aws::VectorThe timestamps for the data points, in UTC format.
*/ inline CapacityForecast& WithTimestamps(Aws::VectorThe timestamps for the data points, in UTC format.
*/ inline CapacityForecast& 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 CapacityForecast& 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 CapacityForecast& WithValues(const Aws::VectorThe values of the data points.
*/ inline CapacityForecast& WithValues(Aws::VectorThe values of the data points.
*/ inline CapacityForecast& AddValues(double value) { m_valuesHasBeenSet = true; m_values.push_back(value); return *this; } private: Aws::Vector