Module Values.UpdateActiveModelVersionRequestSource

Sets the active model version for a given machine learning model.

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

    The name of the machine learning model for which the active model version is being set.

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

    The version of the machine learning model for which the active model version is being set.

    *)
}
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