Module Values.CloudWatchMetricsDataSummarySource

Contains information about the analyzed metrics that displayed anomalous behavior.

Sourcetype nonrec t = {
  1. timestampMetricValuePairList : TimestampMetricValuePairList.t option;
    (*

    This is a list of Amazon CloudWatch metric values at given timestamp.

    *)
  2. statusCode : CloudWatchMetricDataStatusCode.t option;
    (*

    This is an enum of the status showing whether the metric value pair list has partial or complete data, or if there was an error.

    *)
}
Sourceval make : ?timestampMetricValuePairList:??? -> ?statusCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Double of MetricValue.t | `Timestamp of Timestamp.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