#[non_exhaustive]pub struct DescribeRuleGroupMetadataOutput { /* private fields */ }
Implementations
sourceimpl DescribeRuleGroupMetadataOutput
impl DescribeRuleGroupMetadataOutput
sourcepub fn rule_group_arn(&self) -> Option<&str>
pub fn rule_group_arn(&self) -> Option<&str>
The descriptive name of the rule group. You can't change the name of a rule group after you create it.
You must specify the ARN or the name, and you can specify both.
sourcepub fn rule_group_name(&self) -> Option<&str>
pub fn rule_group_name(&self) -> Option<&str>
The descriptive name of the rule group. You can't change the name of a rule group after you create it.
You must specify the ARN or the name, and you can specify both.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Returns the metadata objects for the specified rule group.
sourcepub fn type(&self) -> Option<&RuleGroupType>
pub fn type(&self) -> Option<&RuleGroupType>
Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules.
This setting is required for requests that do not include the RuleGroupARN
.
sourcepub fn capacity(&self) -> Option<i32>
pub fn capacity(&self) -> Option<i32>
The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation. When you update a rule group, you are limited to this capacity. When you reference a rule group from a firewall policy, Network Firewall reserves this capacity for the rule group.
You can retrieve the capacity that would be required for a rule group before you create the rule group by calling CreateRuleGroup
with DryRun
set to TRUE
.
sourcepub fn stateful_rule_options(&self) -> Option<&StatefulRuleOptions>
pub fn stateful_rule_options(&self) -> Option<&StatefulRuleOptions>
Additional options governing how Network Firewall handles the rule group. You can only use these for stateful rule groups.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The last time that the rule group was changed.
sourceimpl DescribeRuleGroupMetadataOutput
impl DescribeRuleGroupMetadataOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeRuleGroupMetadataOutput
.
Trait Implementations
sourceimpl Clone for DescribeRuleGroupMetadataOutput
impl Clone for DescribeRuleGroupMetadataOutput
sourcefn clone(&self) -> DescribeRuleGroupMetadataOutput
fn clone(&self) -> DescribeRuleGroupMetadataOutput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more