Module Values.ModelAliasSource

An alias that provides a stable reference to a model version.

Sourcetype nonrec t = {
  1. aliasName : ModelId.t option;
    (*

    The name of the model alias.

    *)
  2. latestModelId : ModelId.t option;
    (*

    The model ID that this alias currently points to.

    *)
  3. resolvedModelId : ModelId.t option;
    (*

    The resolved model ID after alias resolution.

    *)
}
Sourceval make : ?aliasName:??? -> ?latestModelId:??? -> ?resolvedModelId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ModelId.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