Module Values.StatefulRuleGroupSource

Network Firewall stateful rule group, used in a NetworkFirewallPolicyDescription.

Sourcetype nonrec t = {
  1. ruleGroupName : NetworkFirewallResourceName.t option;
    (*

    The name of the rule group.

    *)
  2. resourceId : ResourceId.t option;
    (*

    The resource ID of the rule group.

    *)
  3. priority : PriorityNumber.t option;
    (*

    An integer setting that indicates the order in which to run the stateful rule groups in a single Network Firewall firewall policy. This setting only applies to firewall policies that specify the STRICT_ORDER rule order in the stateful engine options settings. Network Firewall evalutes each stateful rule group against a packet starting with the group that has the lowest priority setting. You must ensure that the priority settings are unique within each policy. For information about You can change the priority settings of your rule groups at any time. To make it easier to insert rule groups later, number them so there's a wide range in between, for example use 100, 200, and so on.

    *)
  4. override : NetworkFirewallStatefulRuleGroupOverride.t option;
    (*

    The action that allows the policy owner to override the behavior of the rule group within a policy.

    *)
}
Sourceval make : ?ruleGroupName:??? -> ?resourceId:??? -> ?priority:??? -> ?override:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of PriorityNumber.t | `String of NetworkFirewallResourceName.t | `Structure of (string * [> `Enum of string ]) 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