Struct aws_sdk_networkfirewall::model::FirewallPolicy
source · [−]#[non_exhaustive]pub struct FirewallPolicy { /* private fields */ }
Expand description
The firewall policy defines the behavior of a firewall using a collection of stateless and stateful rule groups and other settings. You can use one firewall policy for multiple firewalls.
This, along with FirewallPolicyResponse
, define the policy. You can retrieve all objects for a firewall policy by calling DescribeFirewallPolicy
.
Implementations
sourceimpl FirewallPolicy
impl FirewallPolicy
sourcepub fn stateless_rule_group_references(
&self
) -> Option<&[StatelessRuleGroupReference]>
pub fn stateless_rule_group_references(
&self
) -> Option<&[StatelessRuleGroupReference]>
References to the stateless rule groups that are used in the policy. These define the matching criteria in stateless rules.
sourcepub fn stateless_default_actions(&self) -> Option<&[String]>
pub fn stateless_default_actions(&self) -> Option<&[String]>
The actions to take on a packet if it doesn't match any of the stateless rules in the policy. If you want non-matching packets to be forwarded for stateful inspection, specify aws:forward_to_sfe
.
You must specify one of the standard actions: aws:pass
, aws:drop
, or aws:forward_to_sfe
. In addition, you can specify custom actions that are compatible with your standard section choice.
For example, you could specify ["aws:pass"]
or you could specify ["aws:pass", “customActionName”]
. For information about compatibility, see the custom action descriptions under CustomAction
.
sourcepub fn stateless_fragment_default_actions(&self) -> Option<&[String]>
pub fn stateless_fragment_default_actions(&self) -> Option<&[String]>
The actions to take on a fragmented UDP packet if it doesn't match any of the stateless rules in the policy. Network Firewall only manages UDP packet fragments and silently drops packet fragments for other protocols. If you want non-matching fragmented UDP packets to be forwarded for stateful inspection, specify aws:forward_to_sfe
.
You must specify one of the standard actions: aws:pass
, aws:drop
, or aws:forward_to_sfe
. In addition, you can specify custom actions that are compatible with your standard section choice.
For example, you could specify ["aws:pass"]
or you could specify ["aws:pass", “customActionName”]
. For information about compatibility, see the custom action descriptions under CustomAction
.
sourcepub fn stateless_custom_actions(&self) -> Option<&[CustomAction]>
pub fn stateless_custom_actions(&self) -> Option<&[CustomAction]>
The custom action definitions that are available for use in the firewall policy's StatelessDefaultActions
setting. You name each custom action that you define, and then you can use it by name in your default actions specifications.
sourcepub fn stateful_rule_group_references(
&self
) -> Option<&[StatefulRuleGroupReference]>
pub fn stateful_rule_group_references(
&self
) -> Option<&[StatefulRuleGroupReference]>
References to the stateful rule groups that are used in the policy. These define the inspection criteria in stateful rules.
sourcepub fn stateful_default_actions(&self) -> Option<&[String]>
pub fn stateful_default_actions(&self) -> Option<&[String]>
The default actions to take on a packet that doesn't match any stateful rules. The stateful default action is optional, and is only valid when using the strict rule order.
Valid values of the stateful default action:
-
aws:drop_strict
-
aws:drop_established
-
aws:alert_strict
-
aws:alert_established
For more information, see Strict evaluation order in the Network Firewall Developer Guide.
sourcepub fn stateful_engine_options(&self) -> Option<&StatefulEngineOptions>
pub fn stateful_engine_options(&self) -> Option<&StatefulEngineOptions>
Additional options governing how Network Firewall handles stateful rules. The stateful rule groups that you use in your policy must have stateful rule options settings that are compatible with these settings.
sourceimpl FirewallPolicy
impl FirewallPolicy
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FirewallPolicy
.
Trait Implementations
sourceimpl Clone for FirewallPolicy
impl Clone for FirewallPolicy
sourcefn clone(&self) -> FirewallPolicy
fn clone(&self) -> FirewallPolicy
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more