Module Values.AutoMLConfigSource

When the solution performs AutoML (performAutoML is true in CreateSolution), Amazon Personalize determines which recipe, from the specified list, optimizes the given metric. Amazon Personalize then uses that recipe for the solution.

Sourcetype nonrec t = {
  1. metricName : MetricName.t option;
    (*

    The metric to optimize.

    *)
  2. recipeList : ArnList.t option;
    (*

    The list of candidate recipes.

    *)
}
Sourceval make : ?metricName:??? -> ?recipeList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Arn.t ] list | `String of MetricName.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