Module Values.AutoTrainingConfigSource

The automatic training configuration to use when performAutoTraining is true.

Sourcetype nonrec t = {
  1. schedulingExpression : SchedulingExpression.t option;
    (*

    Specifies how often to automatically train new solution versions. Specify a rate expression in rate(value unit) format. For value, specify a number between 1 and 30. For unit, specify day or days. For example, to automatically create a new solution version every 5 days, specify rate(5 days). The default is every 7 days. For more information about auto training, see Creating and configuring a solution.

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