Module Values.LoadForecastSource

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.

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.

    *)
  3. metricSpecification : PredictiveScalingMetricSpecification.t option;
    (*

    The metric specification for the load forecast.

    *)
}
Sourceval make : ?timestamps:??? -> ?values:??? -> ?metricSpecification:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Double of MetricScale.t | `Timestamp of TimestampType.t ] list | `Structure of (string * [> `Double of MetricScale.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Boolean of ReturnData.t | `String of XmlStringMaxLen255.t | `Structure of (string * [> `String of XmlStringMetricStat.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of MetricDimensionName.t ]) list ] list | `String of MetricNamespace.t ]) list ]) list ]) list ] list | `String of XmlStringMaxLen1023.t ]) list ]) 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