Module Values.CreateRetrainingSchedulerRequestSource

Creates a retraining scheduler on the specified model.

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

    The name of the model to add the retraining scheduler to.

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

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

    *)
  3. retrainingFrequency : RetrainingFrequency.t;
    (*

    This parameter uses the ISO 8601 standard to set the frequency at which you want retraining to occur in terms of Years, Months, and/or Days (note: other parameters like Time are not currently supported). The minimum value is 30 days (P30D) and the maximum value is 1 year (P1Y). For example, the following values are valid: P3M15D – Every 3 months and 15 days P2M – Every 2 months P150D – Every 150 days

    *)
  4. lookbackWindow : LookbackWindow.t;
    (*

    The number of past days of data that will be used for retraining.

    *)
  5. promoteMode : ModelPromoteMode.t option;
    (*

    Indicates how the service will use new models. In MANAGED mode, new models will automatically be used for inference if they have better performance than the current model. In MANUAL mode, the new models will not be used until they are manually activated.

    *)
  6. clientToken : IdempotenceToken.t;
    (*

    A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment generates one.

    *)
}
Sourceval context_ : string
Sourceval make : ?retrainingStartDate:??? -> ?promoteMode:??? -> modelName:ModelName.t -> retrainingFrequency:RetrainingFrequency.t -> lookbackWindow:LookbackWindow.t -> clientToken:IdempotenceToken.t -> 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