#[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
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.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
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 AwsWafv2RulesActionDetails
impl Debug for AwsWafv2RulesActionDetails
impl StructuralPartialEq for AwsWafv2RulesActionDetails
Auto Trait Implementations§
impl Freeze for AwsWafv2RulesActionDetails
impl RefUnwindSafe for AwsWafv2RulesActionDetails
impl Send for AwsWafv2RulesActionDetails
impl Sync for AwsWafv2RulesActionDetails
impl Unpin for AwsWafv2RulesActionDetails
impl UnwindSafe for AwsWafv2RulesActionDetails
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.