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