Module Values.BlockedPhrasesConfigurationUpdateSource

Updates a blocked phrases configuration in your Amazon Q Business application.

Sourcetype nonrec t = {
  1. blockedPhrasesToCreateOrUpdate : BlockedPhrases.t option;
    (*

    Creates or updates a blocked phrases configuration in your Amazon Q Business application.

    *)
  2. blockedPhrasesToDelete : BlockedPhrases.t option;
    (*

    Deletes a blocked phrases configuration in your Amazon Q Business application.

    *)
  3. systemMessageOverride : SystemMessageOverride.t option;
    (*

    The configured custom message displayed to your end user when they use blocked phrase during chat.

    *)
}
Sourceval make : ?blockedPhrasesToCreateOrUpdate:??? -> ?blockedPhrasesToDelete:??? -> ?systemMessageOverride:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of BlockedPhrase.t ] list | `String of SystemMessageOverride.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