Module Values.RetrainingSchedulerSummarySource

Provides information about the specified retraining scheduler, including model name, status, start date, frequency, and lookback window.

Sourcetype nonrec t = {
  1. modelName : ModelName.t option;
    (*

    The name of the model that the retraining scheduler is attached to.

    *)
  2. modelArn : ModelArn.t option;
    (*

    The ARN of the model that the retraining scheduler is attached to.

    *)
  3. status : RetrainingSchedulerStatus.t option;
    (*

    The status of the retraining scheduler.

    *)
  4. retrainingStartDate : Timestamp.t option;
    (*

    The start date for the retraining scheduler. Lookout for Equipment truncates the time you provide to the nearest UTC day.

    *)
  5. retrainingFrequency : RetrainingFrequency.t option;
    (*

    The frequency at which the model retraining is set. This follows the ISO 8601 guidelines.

    *)
  6. lookbackWindow : LookbackWindow.t option;
    (*

    The number of past days of data used for retraining.

    *)
}
Sourceval make : ?modelName:??? -> ?modelArn:??? -> ?status:??? -> ?retrainingStartDate:??? -> ?retrainingFrequency:??? -> ?lookbackWindow:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ModelName.t | `Timestamp of Timestamp.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