#[non_exhaustive]pub struct AwsNetworkFirewallRuleGroupDetails {
pub capacity: Option<i32>,
pub description: Option<String>,
pub rule_group: Option<RuleGroupDetails>,
pub rule_group_arn: Option<String>,
pub rule_group_id: Option<String>,
pub rule_group_name: Option<String>,
pub type: Option<String>,
}
Expand description
Details about an Network Firewall rule group. Rule groups are used to inspect and control network traffic. Stateless rule groups apply to individual packets. Stateful rule groups apply to packets in the context of their traffic flow.
Rule groups are referenced in firewall policies.
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.capacity: Option<i32>
The maximum number of operating resources that this rule group can use.
description: Option<String>
A description of the rule group.
rule_group: Option<RuleGroupDetails>
Details about the rule group.
rule_group_arn: Option<String>
The ARN of the rule group.
rule_group_id: Option<String>
The identifier of the rule group.
rule_group_name: Option<String>
The descriptive name of the rule group.
type: Option<String>
The type of rule group. A rule group can be stateful or stateless.
Implementations§
source§impl AwsNetworkFirewallRuleGroupDetails
impl AwsNetworkFirewallRuleGroupDetails
sourcepub fn capacity(&self) -> Option<i32>
pub fn capacity(&self) -> Option<i32>
The maximum number of operating resources that this rule group can use.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the rule group.
sourcepub fn rule_group(&self) -> Option<&RuleGroupDetails>
pub fn rule_group(&self) -> Option<&RuleGroupDetails>
Details about the rule group.
sourcepub fn rule_group_arn(&self) -> Option<&str>
pub fn rule_group_arn(&self) -> Option<&str>
The ARN of the rule group.
sourcepub fn rule_group_id(&self) -> Option<&str>
pub fn rule_group_id(&self) -> Option<&str>
The identifier of the rule group.
sourcepub fn rule_group_name(&self) -> Option<&str>
pub fn rule_group_name(&self) -> Option<&str>
The descriptive name of the rule group.
source§impl AwsNetworkFirewallRuleGroupDetails
impl AwsNetworkFirewallRuleGroupDetails
sourcepub fn builder() -> AwsNetworkFirewallRuleGroupDetailsBuilder
pub fn builder() -> AwsNetworkFirewallRuleGroupDetailsBuilder
Creates a new builder-style object to manufacture AwsNetworkFirewallRuleGroupDetails
.
Trait Implementations§
source§impl Clone for AwsNetworkFirewallRuleGroupDetails
impl Clone for AwsNetworkFirewallRuleGroupDetails
source§fn clone(&self) -> AwsNetworkFirewallRuleGroupDetails
fn clone(&self) -> AwsNetworkFirewallRuleGroupDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for AwsNetworkFirewallRuleGroupDetails
impl PartialEq for AwsNetworkFirewallRuleGroupDetails
source§fn eq(&self, other: &AwsNetworkFirewallRuleGroupDetails) -> bool
fn eq(&self, other: &AwsNetworkFirewallRuleGroupDetails) -> bool
self
and other
values to be equal, and is used
by ==
.