Module Values.GuardrailSensitiveInformationPolicyConfigSource

Contains details about PII entities and regular expressions to configure for the guardrail.

Sourcetype nonrec t = {
  1. piiEntitiesConfig : GuardrailPiiEntitiesConfig.t option;
    (*

    A list of PII entities to configure to the guardrail.

    *)
  2. regexesConfig : GuardrailRegexesConfig.t option;
    (*

    A list of regular expressions to configure to the guardrail.

    *)
}
Sourceval make : ?piiEntitiesConfig:??? -> ?regexesConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of GuardrailRegexConfigNameString.t ]) 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