Module Values_1.InferenceComponentRuntimeConfigSummarySource

Details about the runtime settings for the model that is deployed with the inference component.

Sourcetype nonrec t = {
  1. desiredCopyCount : InferenceComponentCopyCount.t option;
    (*

    The number of runtime copies of the model container that you requested to deploy with the inference component.

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

    The number of runtime copies of the model container that are currently deployed.

    *)
  3. placementStatus : InferenceComponentPlacementStatusList.t option;
    (*

    The placement status of the inference component across instance types. Shows how the inference component copies are distributed across instance types.

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