Module Values.MetricQueryResultSource

The result of a query to retrieve training metrics from SageMaker.

Sourcetype nonrec t = {
  1. status : MetricQueryResultStatus.t option;
    (*

    The status of the metric query.

    *)
  2. message : Message.t option;
    (*

    A message describing the status of the metric query.

    *)
  3. xAxisValues : XAxisValues.t option;
    (*

    The values for the x-axis of the metrics.

    *)
  4. metricValues : MetricValues.t option;
    (*

    The metric values retrieved by the query.

    *)
}
Sourceval make : ?status:??? -> ?message:??? -> ?xAxisValues:??? -> ?metricValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Double of Double.t | `Long of Long.t ] list | `String of Message.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