Module Values_2.TrialComponentMetricSummarySource

A summary of the metrics of a trial component.

Sourcetype nonrec t = {
  1. metricName : Values_0.MetricName.t option;
    (*

    The name of the metric.

    *)
  2. sourceArn : TrialComponentSourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the source.

    *)
  3. timeStamp : Values_0.Timestamp.t option;
    (*

    When the metric was last updated.

    *)
  4. max : OptionalDouble.t option;
    (*

    The maximum value of the metric.

    *)
  5. min : OptionalDouble.t option;
    (*

    The minimum value of the metric.

    *)
  6. last : OptionalDouble.t option;
    (*

    The most recent value of the metric.

    *)
  7. count : OptionalInteger.t option;
    (*

    The number of samples used to generate the metric.

    *)
  8. avg : OptionalDouble.t option;
    (*

    The average value of the metric.

    *)
  9. stdDev : OptionalDouble.t option;
    (*

    The standard deviation of the metric.

    *)
}
Sourceval make : ?metricName:??? -> ?sourceArn:??? -> ?timeStamp:??? -> ?max:??? -> ?min:??? -> ?last:??? -> ?count:??? -> ?avg:??? -> ?stdDev:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of OptionalDouble.t | `Integer of OptionalInteger.t | `String of Values_0.MetricName.t | `Timestamp of Values_0.Timestamp.t ]) 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