Values.RetrainingSchedulerSummarySourceProvides information about the specified retraining scheduler, including model name, status, start date, frequency, and lookback window.
type nonrec t = {modelName : ModelName.t option;The name of the model that the retraining scheduler is attached to.
*)modelArn : ModelArn.t option;The ARN of the model that the retraining scheduler is attached to.
*)status : RetrainingSchedulerStatus.t option;The status of the retraining scheduler.
*)retrainingStartDate : Timestamp.t option;The start date for the retraining scheduler. Lookout for Equipment truncates the time you provide to the nearest UTC day.
*)retrainingFrequency : RetrainingFrequency.t option;The frequency at which the model retraining is set. This follows the ISO 8601 guidelines.
*)lookbackWindow : LookbackWindow.t option;The number of past days of data used for retraining.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of ModelName.t
| `Timestamp of Timestamp.t ])
list ]