Module Values.GuardrailRegexSource

The regular expression configured for the guardrail.

Sourcetype nonrec t = {
  1. name : GuardrailRegexNameString.t option;
    (*

    The name of the regular expression for the guardrail.

    *)
  2. description : GuardrailRegexDescriptionString.t option;
    (*

    The description of the regular expression for the guardrail.

    *)
  3. pattern : GuardrailRegexPatternString.t option;
    (*

    The pattern of the regular expression configured for the guardrail.

    *)
  4. action : GuardrailSensitiveInformationAction.t option;
    (*

    The action taken when a match to the regular expression is detected.

    *)
  5. inputAction : GuardrailSensitiveInformationAction.t option;
    (*

    The action to take when harmful content is detected in the input. Supported values include: BLOCK – Block the content and replace it with blocked messaging. NONE – Take no action but return detection information in the trace response.

    *)
  6. outputAction : GuardrailSensitiveInformationAction.t option;
    (*

    The action to take when harmful content is detected in the output. Supported values include: BLOCK – Block the content and replace it with blocked messaging. NONE – Take no action but return detection information in the trace response.

    *)
  7. inputEnabled : Boolean.t option;
    (*

    Indicates whether guardrail evaluation is enabled on the input. When disabled, you aren't charged for the evaluation. The evaluation doesn't appear in the response.

    *)
  8. outputEnabled : Boolean.t option;
    (*

    Indicates whether guardrail evaluation is enabled on the output. When disabled, you aren't charged for the evaluation. The evaluation doesn't appear in the response.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?pattern:??? -> ?action:??? -> ?inputAction:??? -> ?outputAction:??? -> ?inputEnabled:??? -> ?outputEnabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of GuardrailRegexNameString.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