Module Values_1.ModelConfigurationSource

Defines the model configuration. Includes the specification name and environment parameters.

Sourcetype nonrec t = {
  1. inferenceSpecificationName : Values_0.InferenceSpecificationName.t option;
    (*

    The inference specification name in the model package version.

    *)
  2. environmentParameters : EnvironmentParameters.t option;
    (*

    Defines the environment parameters that includes key, value types, and values.

    *)
  3. compilationJobName : RecommendationJobCompilationJobName.t option;
    (*

    The name of the compilation job used to create the recommended model artifacts.

    *)
}
Sourceval make : ?inferenceSpecificationName:??? -> ?environmentParameters:??? -> ?compilationJobName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of Values_0.String_.t ]) list ] list | `String of Values_0.InferenceSpecificationName.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