Module Values.ModelSource

Information about a model deployed on an edge device that is registered with SageMaker Edge Manager.

Sourcetype nonrec t = {
  1. modelName : ModelName.t option;
    (*

    The name of the model.

    *)
  2. modelVersion : Version.t option;
    (*

    The version of the model.

    *)
  3. latestSampleTime : Timestamp.t option;
    (*

    The timestamp of the last data sample taken.

    *)
  4. latestInference : Timestamp.t option;
    (*

    The timestamp of the last inference that was made.

    *)
  5. modelMetrics : EdgeMetrics.t option;
    (*

    Information required for model metrics.

    *)
}
Sourceval make : ?modelName:??? -> ?modelVersion:??? -> ?latestSampleTime:??? -> ?latestInference:??? -> ?modelMetrics:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Value.t | `String of Dimension.t | `Timestamp of Timestamp.t ]) list ] list | `String of ModelName.t | `Timestamp of 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