Module Values.HPOResourceConfigSource

Describes the resource configuration for hyperparameter optimization (HPO).

Sourcetype nonrec t = {
  1. maxNumberOfTrainingJobs : HPOResource.t option;
    (*

    The maximum number of training jobs when you create a solution version. The maximum value for maxNumberOfTrainingJobs is 40.

    *)
  2. maxParallelTrainingJobs : HPOResource.t option;
    (*

    The maximum number of parallel training jobs when you create a solution version. The maximum value for maxParallelTrainingJobs is 10.

    *)
}
Sourceval make : ?maxNumberOfTrainingJobs:??? -> ?maxParallelTrainingJobs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of HPOResource.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