Module Values_0.RuleOptionSource

Describes additional settings for a stateful rule.

Sourcetype nonrec t = {
  1. keyword : String_.t option;
    (*

    The Suricata keyword.

    *)
  2. settings : StringList.t option;
    (*

    The settings for the keyword.

    *)
}
Sourceval make : ?keyword:??? -> ?settings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.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