Module Values.CapacityForecastSource

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.

Sourcetype nonrec t = {
  1. timestamps : PredictiveScalingForecastTimestamps.t option;
    (*

    The timestamps for the data points, in UTC format.

    *)
  2. values : PredictiveScalingForecastValues.t option;
    (*

    The values of the data points.

    *)
}
Sourceval make : ?timestamps:??? -> ?values:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Double of MetricScale.t | `Timestamp of TimestampType.t ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t