Module Values.MetricQuerySource

Specifies a query to retrieve training metrics from SageMaker.

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

    The name of the metric to retrieve.

    *)
  2. resourceArn : SageMakerResourceArn.t;
    (*

    The ARN of the SageMaker resource to retrieve metrics for.

    *)
  3. metricStat : MetricStatistic.t;
    (*

    The metrics stat type of metrics to retrieve.

    *)
  4. period : Period.t;
    (*

    The time period of metrics to retrieve.

    *)
  5. xAxisType : XAxisType.t;
    (*

    The x-axis type of metrics to retrieve.

    *)
  6. start : Long.t option;
    (*

    The start time of metrics to retrieve.

    *)
  7. end_ : Long.t option;
    (*

    The end time of metrics to retrieve.

    *)
}
Sourceval context_ : string
Sourceval make : ?start:??? -> ?end_:??? -> metricName:MetricName.t -> resourceArn:SageMakerResourceArn.t -> metricStat:MetricStatistic.t -> period:Period.t -> xAxisType:XAxisType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of MetricName.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