Struct aws_sdk_waf::types::ExcludedRule
source · #[non_exhaustive]pub struct ExcludedRule {
pub rule_id: Option<String>,
}Expand description
This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide.
For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS WAF Developer Guide. With the latest version, AWS WAF has a single set of endpoints for regional and global use.
The rule to exclude from a rule group. This is applicable only when the ActivatedRule refers to a RuleGroup. The rule must belong to the RuleGroup that is specified by the ActivatedRule.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.rule_id: Option<String>The unique identifier for the rule to exclude from the rule group.
Implementations§
source§impl ExcludedRule
impl ExcludedRule
source§impl ExcludedRule
impl ExcludedRule
sourcepub fn builder() -> ExcludedRuleBuilder
pub fn builder() -> ExcludedRuleBuilder
Creates a new builder-style object to manufacture ExcludedRule.
Trait Implementations§
source§impl Clone for ExcludedRule
impl Clone for ExcludedRule
source§fn clone(&self) -> ExcludedRule
fn clone(&self) -> ExcludedRule
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ExcludedRule
impl Debug for ExcludedRule
source§impl PartialEq<ExcludedRule> for ExcludedRule
impl PartialEq<ExcludedRule> for ExcludedRule
source§fn eq(&self, other: &ExcludedRule) -> bool
fn eq(&self, other: &ExcludedRule) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ExcludedRule
Auto Trait Implementations§
impl RefUnwindSafe for ExcludedRule
impl Send for ExcludedRule
impl Sync for ExcludedRule
impl Unpin for ExcludedRule
impl UnwindSafe for ExcludedRule
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more