Struct aws_sdk_wafv2::model::Filter
source · #[non_exhaustive]pub struct Filter { /* private fields */ }
Expand description
A single logging filter, used in LoggingFilter
.
Implementations§
source§impl Filter
impl Filter
sourcepub fn behavior(&self) -> Option<&FilterBehavior>
pub fn behavior(&self) -> Option<&FilterBehavior>
How to handle logs that satisfy the filter's conditions and requirement.
sourcepub fn requirement(&self) -> Option<&FilterRequirement>
pub fn requirement(&self) -> Option<&FilterRequirement>
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
sourcepub fn conditions(&self) -> Option<&[Condition]>
pub fn conditions(&self) -> Option<&[Condition]>
Match conditions for the filter.