pub struct Builder { /* private fields */ }
Expand description
A builder for StatefulRuleGroupReference
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn resource_arn(self, input: impl Into<String>) -> Self
pub fn resource_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the stateful rule group.
sourcepub fn set_resource_arn(self, input: Option<String>) -> Self
pub fn set_resource_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the stateful rule group.
sourcepub fn priority(self, input: i32) -> Self
pub fn priority(self, input: i32) -> Self
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.
sourcepub fn set_priority(self, input: Option<i32>) -> Self
pub fn set_priority(self, input: Option<i32>) -> Self
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.
sourcepub fn override(self, input: StatefulRuleGroupOverride) -> Self
pub fn override(self, input: StatefulRuleGroupOverride) -> Self
The action that allows the policy owner to override the behavior of the rule group within a policy.
sourcepub fn set_override(self, input: Option<StatefulRuleGroupOverride>) -> Self
pub fn set_override(self, input: Option<StatefulRuleGroupOverride>) -> Self
The action that allows the policy owner to override the behavior of the rule group within a policy.
sourcepub fn build(self) -> StatefulRuleGroupReference
pub fn build(self) -> StatefulRuleGroupReference
Consumes the builder and constructs a StatefulRuleGroupReference
.