Module Values.UpdateRecommenderRequestSource

Updates the properties of an existing recommender, allowing you to modify its configuration and description.

Sourcetype nonrec t = {
  1. domainName : Name.t;
    (*

    The unique name of the domain.

    *)
  2. recommenderName : Name.t;
    (*

    The name of the recommender to update.

    *)
  3. description : SensitiveText.t option;
    (*

    The new description to assign to the recommender.

    *)
  4. recommenderConfig : RecommenderConfig.t option;
    (*

    The new configuration settings to apply to the recommender, including updated parameters and settings that define its behavior.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?recommenderConfig:??? -> domainName:Name.t -> recommenderName:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.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 ]) 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