#[non_exhaustive]pub struct AwsWafv2RulesActionDetails {
pub allow: Option<AwsWafv2ActionAllowDetails>,
pub block: Option<AwsWafv2ActionBlockDetails>,
pub captcha: Option<AwsWafv2RulesActionCaptchaDetails>,
pub count: Option<AwsWafv2RulesActionCountDetails>,
}
Expand description
The action that WAF should take on a web request when it matches a rule's statement. Settings at the web ACL level can override the rule action setting.
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.allow: Option<AwsWafv2ActionAllowDetails>
Instructs WAF to allow the web request.
block: Option<AwsWafv2ActionBlockDetails>
Instructs WAF to block the web request.
captcha: Option<AwsWafv2RulesActionCaptchaDetails>
Instructs WAF to run a CAPTCHA check against the web request.
count: Option<AwsWafv2RulesActionCountDetails>
Instructs WAF to count the web request and then continue evaluating the request using the remaining rules in the web ACL.
Implementations§
source§impl AwsWafv2RulesActionDetails
impl AwsWafv2RulesActionDetails
sourcepub fn allow(&self) -> Option<&AwsWafv2ActionAllowDetails>
pub fn allow(&self) -> Option<&AwsWafv2ActionAllowDetails>
Instructs WAF to allow the web request.
sourcepub fn block(&self) -> Option<&AwsWafv2ActionBlockDetails>
pub fn block(&self) -> Option<&AwsWafv2ActionBlockDetails>
Instructs WAF to block the web request.
sourcepub fn captcha(&self) -> Option<&AwsWafv2RulesActionCaptchaDetails>
pub fn captcha(&self) -> Option<&AwsWafv2RulesActionCaptchaDetails>
Instructs WAF to run a CAPTCHA check against the web request.
sourcepub fn count(&self) -> Option<&AwsWafv2RulesActionCountDetails>
pub fn count(&self) -> Option<&AwsWafv2RulesActionCountDetails>
Instructs WAF to count the web request and then continue evaluating the request using the remaining rules in the web ACL.
source§impl AwsWafv2RulesActionDetails
impl AwsWafv2RulesActionDetails
sourcepub fn builder() -> AwsWafv2RulesActionDetailsBuilder
pub fn builder() -> AwsWafv2RulesActionDetailsBuilder
Creates a new builder-style object to manufacture AwsWafv2RulesActionDetails
.
Trait Implementations§
source§impl Clone for AwsWafv2RulesActionDetails
impl Clone for AwsWafv2RulesActionDetails
source§fn clone(&self) -> AwsWafv2RulesActionDetails
fn clone(&self) -> AwsWafv2RulesActionDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AwsWafv2RulesActionDetails
impl Debug for AwsWafv2RulesActionDetails
source§impl PartialEq for AwsWafv2RulesActionDetails
impl PartialEq for AwsWafv2RulesActionDetails
source§fn eq(&self, other: &AwsWafv2RulesActionDetails) -> bool
fn eq(&self, other: &AwsWafv2RulesActionDetails) -> bool
self
and other
values to be equal, and is used
by ==
.