Struct aws_sdk_networkfirewall::model::StatefulRule
source · [−]#[non_exhaustive]pub struct StatefulRule { /* private fields */ }
Expand description
A single Suricata rules specification, for use in a stateful rule group. Use this option to specify a simple Suricata rule with protocol, source and destination, ports, direction, and rule options. For information about the Suricata Rules
format, see Rules Format.
Implementations
sourceimpl StatefulRule
impl StatefulRule
sourcepub fn action(&self) -> Option<&StatefulAction>
pub fn action(&self) -> Option<&StatefulAction>
Defines what Network Firewall should do with the packets in a traffic flow when the flow matches the stateful rule criteria. For all actions, Network Firewall performs the specified action and discontinues stateful inspection of the traffic flow.
The actions for a stateful rule are defined as follows:
-
PASS - Permits the packets to go to the intended destination.
-
DROP - Blocks the packets from going to the intended destination and sends an alert log message, if alert logging is configured in the
Firewall
LoggingConfiguration
. -
ALERT - Permits the packets to go to the intended destination and sends an alert log message, if alert logging is configured in the
Firewall
LoggingConfiguration
.You can use this action to test a rule that you intend to use to drop traffic. You can enable the rule with
ALERT
action, verify in the logs that the rule is filtering as you want, then change the action toDROP
.
sourcepub fn header(&self) -> Option<&Header>
pub fn header(&self) -> Option<&Header>
The stateful inspection criteria for this rule, used to inspect traffic flows.
sourcepub fn rule_options(&self) -> Option<&[RuleOption]>
pub fn rule_options(&self) -> Option<&[RuleOption]>
Additional options for the rule. These are the Suricata RuleOptions
settings.
sourceimpl StatefulRule
impl StatefulRule
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StatefulRule
.
Trait Implementations
sourceimpl Clone for StatefulRule
impl Clone for StatefulRule
sourcefn clone(&self) -> StatefulRule
fn clone(&self) -> StatefulRule
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more