Module Values_1.InferenceComponentPlacementStatusSource

The placement status of an inference component on a specific instance type. Shows the number of inference component copies currently placed on instances of a given type.

Sourcetype nonrec t = {
  1. instanceType : Values_0.ProductionVariantInstanceType.t option;
    (*

    The ML compute instance type where the inference component copies are placed.

    *)
  2. currentCopyCount : InferenceComponentCopyCount.t option;
    (*

    The number of inference component copies currently placed on instances of this type.

    *)
}
Sourceval make : ?instanceType:??? -> ?currentCopyCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of InferenceComponentCopyCount.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