Struct aws_sdk_networkfirewall::model::StatefulRuleGroupReference [−][src]
#[non_exhaustive]pub struct StatefulRuleGroupReference {
pub resource_arn: Option<String>,
pub priority: Option<i32>,
pub override: Option<StatefulRuleGroupOverride>,
}
Expand description
Identifier for a single stateful rule group, used in a firewall policy to refer to a rule group.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.resource_arn: Option<String>
The Amazon Resource Name (ARN) of the stateful rule group.
priority: Option<i32>
An integer setting that indicates the order in which to run the stateful rule groups in a single FirewallPolicy
. 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.
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.
override: Option<StatefulRuleGroupOverride>
The action that allows the policy owner to override the behavior of the rule group within a policy.
Implementations
The Amazon Resource Name (ARN) of the stateful rule group.
An integer setting that indicates the order in which to run the stateful rule groups in a single FirewallPolicy
. 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.
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.
The action that allows the policy owner to override the behavior of the rule group within a policy.
Creates a new builder-style object to manufacture StatefulRuleGroupReference
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for StatefulRuleGroupReference
impl Send for StatefulRuleGroupReference
impl Sync for StatefulRuleGroupReference
impl Unpin for StatefulRuleGroupReference
impl UnwindSafe for StatefulRuleGroupReference
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more