Module Values.RuleGroupSourceStatelessRuleDefinitionSource

The definition of the stateless rule.

Sourcetype nonrec t = {
  1. actions : NonEmptyStringList.t option;
    (*

    The actions to take on a packet that matches one of the stateless rule definition's match attributes. You must specify a standard action (aws:pass, aws:drop, or aws:forward_to_sfe). You can then add custom actions.

    *)
  2. matchAttributes : RuleGroupSourceStatelessRuleMatchAttributes.t option;
    (*

    The criteria for Network Firewall to use to inspect an individual packet in a stateless rule inspection.

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