Module Values.RecommenderUpdateSource

Contains information about an update operation performed on a recommender.

Sourcetype nonrec t = {
  1. recommenderConfig : RecommenderConfig.t option;
    (*

    The updated configuration settings applied to the recommender during this update.

    *)
  2. status : RecommenderStatus.t option;
    (*

    The current status of the recommender update operation.

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

    The timestamp when this recommender update was initiated.

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

    The timestamp of when the recommender was edited.

    *)
  5. failureReason : String_.t option;
    (*

    If the update operation failed, provides the reason for the failure.

    *)
}
Sourceval make : ?recommenderConfig:??? -> ?status:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Integer of RecommenderConfigTrainingFrequencyInteger.t | `Map of ([> `String of String_.t ] * [> `List of [> `String of Text.t ] list ]) list | `Structure of (string * [> `Integer of InferenceConfigMinProvisionedTPSInteger.t | `List of [> `Structure of (string * [> `Double of Double.t | `String of EventParametersEventTypeString.t ]) list ] list ]) list ]) list | `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