Class: Aws::NetworkFirewall::Types::StatefulEngineOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::StatefulEngineOptions
- Defined in:
- gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb
Overview
Note:
When making an API call, you may pass StatefulEngineOptions data as a hash:
{
rule_order: "DEFAULT_ACTION_ORDER", # accepts DEFAULT_ACTION_ORDER, STRICT_ORDER
}
Configuration settings for the handling of the stateful rule groups in a firewall policy.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rule_order ⇒ String
Indicates how to manage the order of stateful rule evaluation for the policy.
Instance Attribute Details
#rule_order ⇒ String
Indicates how to manage the order of stateful rule evaluation for
the policy. DEFAULT_ACTION_ORDER
is the default behavior. Stateful
rules are provided to the rule engine as Suricata compatible
strings, and Suricata evaluates them based on certain settings. For
more information, see Evaluation order for stateful rules in
the Network Firewall Developer Guide.
3857 3858 3859 3860 3861 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 3857 class StatefulEngineOptions < Struct.new( :rule_order) SENSITIVE = [] include Aws::Structure end |