Module Values.BlockedPhrasesConfigurationSource

Provides information about the phrases blocked from chat by your chat control configuration.

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

    A list of phrases blocked from a Amazon Q Business web experience chat. Each phrase can contain a maximum of 36 characters. The list can contain a maximum of 20 phrases.

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

    The configured custom message displayed to an end user informing them that they've used a blocked phrase during chat.

    *)
}
Sourceval make : ?blockedPhrases:??? -> ?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