Class: Aws::NetworkFirewall::Types::StatefulRuleOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::StatefulRuleOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-networkfirewall/types.rb
Overview
Additional options governing how Network Firewall handles the rule group. You can only use these for stateful rule groups.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rule_order ⇒ String
Indicates how to manage the order of the rule evaluation for the rule group.
Instance Attribute Details
#rule_order ⇒ String
Indicates how to manage the order of the rule evaluation for the rule group. ‘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*.
[1]: docs.aws.amazon.com/network-firewall/latest/developerguide/suricata-rule-evaluation-order.html
3866 3867 3868 3869 3870 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 3866 class StatefulRuleOptions < Struct.new( :rule_order) SENSITIVE = [] include Aws::Structure end |