Struct aws_sdk_wafv2::types::HeaderMatchPattern
source · #[non_exhaustive]pub struct HeaderMatchPattern {
pub all: Option<All>,
pub included_headers: Option<Vec<String>>,
pub excluded_headers: Option<Vec<String>>,
}Expand description
The filter to use to identify the subset of headers to inspect in a web request.
You must specify exactly one setting: either All, IncludedHeaders, or ExcludedHeaders.
Example JSON: "MatchPattern": { "ExcludedHeaders": [ "KeyToExclude1", "KeyToExclude2" ] }
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.all: Option<All>Inspect all headers.
included_headers: Option<Vec<String>>Inspect only the headers that have a key that matches one of the strings specified here.
excluded_headers: Option<Vec<String>>Inspect only the headers whose keys don't match any of the strings specified here.
Implementations§
source§impl HeaderMatchPattern
impl HeaderMatchPattern
sourcepub fn included_headers(&self) -> Option<&[String]>
pub fn included_headers(&self) -> Option<&[String]>
Inspect only the headers that have a key that matches one of the strings specified here.
sourcepub fn excluded_headers(&self) -> Option<&[String]>
pub fn excluded_headers(&self) -> Option<&[String]>
Inspect only the headers whose keys don't match any of the strings specified here.
source§impl HeaderMatchPattern
impl HeaderMatchPattern
sourcepub fn builder() -> HeaderMatchPatternBuilder
pub fn builder() -> HeaderMatchPatternBuilder
Creates a new builder-style object to manufacture HeaderMatchPattern.
Trait Implementations§
source§impl Clone for HeaderMatchPattern
impl Clone for HeaderMatchPattern
source§fn clone(&self) -> HeaderMatchPattern
fn clone(&self) -> HeaderMatchPattern
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 HeaderMatchPattern
impl Debug for HeaderMatchPattern
source§impl PartialEq<HeaderMatchPattern> for HeaderMatchPattern
impl PartialEq<HeaderMatchPattern> for HeaderMatchPattern
source§fn eq(&self, other: &HeaderMatchPattern) -> bool
fn eq(&self, other: &HeaderMatchPattern) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for HeaderMatchPattern
Auto Trait Implementations§
impl RefUnwindSafe for HeaderMatchPattern
impl Send for HeaderMatchPattern
impl Sync for HeaderMatchPattern
impl Unpin for HeaderMatchPattern
impl UnwindSafe for HeaderMatchPattern
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