Module Values.DescribeModelVersionRequestSource

Retrieves information about a specific machine learning model version.

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

    The name of the machine learning model that this version belongs to.

    *)
  2. modelVersion : ModelVersion.t;
    (*

    The version of the machine learning model.

    *)
}
Sourceval context_ : string
Sourceval make : modelName:ModelName.t -> modelVersion:ModelVersion.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of ModelVersion.t | `String of ModelName.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