Module Values_1.ModelInfrastructureConfigSource

The configuration for the infrastructure that the model will be deployed to.

Sourcetype nonrec t = {
  1. infrastructureType : ModelInfrastructureType.t;
    (*

    The inference option to which to deploy your model. Possible values are the following: RealTime: Deploy to real-time inference.

    *)
  2. realTimeInferenceConfig : RealTimeInferenceConfig.t;
    (*

    The infrastructure configuration for deploying the model to real-time inference.

    *)
}
Sourceval context_ : string
Sourceval make : infrastructureType:ModelInfrastructureType.t -> realTimeInferenceConfig:RealTimeInferenceConfig.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `Integer of TaskCount.t ]) 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