Module Values.DescribeRetrainingSchedulerResponseSource

Provides a description of the retraining scheduler, including information such as the model name and retraining parameters.

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. retrainingStartDate : Timestamp.t option;
    (*

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

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

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

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

    The number of past days of data used for retraining.

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

    The status of the retraining scheduler.

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

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

    *)
  8. createdAt : Timestamp.t option;
    (*

    Indicates the time and date at which the retraining scheduler was created.

    *)
  9. updatedAt : Timestamp.t option;
    (*

    Indicates the time and date at which the retraining scheduler was updated.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?modelName:??? -> ?modelArn:??? -> ?retrainingStartDate:??? -> ?retrainingFrequency:??? -> ?lookbackWindow:??? -> ?status:??? -> ?promoteMode:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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