pub struct RegexPatternSetUpdate {
pub action: String,
pub regex_pattern_string: String,
}
Expand description
This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide. For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS WAF Developer Guide. With the latest version, AWS WAF has a single set of endpoints for regional and global use.
In an UpdateRegexPatternSet request, RegexPatternSetUpdate
specifies whether to insert or delete a RegexPatternString
and includes the settings for the RegexPatternString
.
Fields§
§action: String
Specifies whether to insert or delete a RegexPatternString
.
regex_pattern_string: String
Specifies the regular expression (regex) pattern that you want AWS WAF to search for, such as B[a@]dB[o0]t
.
Trait Implementations§
Source§impl Clone for RegexPatternSetUpdate
impl Clone for RegexPatternSetUpdate
Source§fn clone(&self) -> RegexPatternSetUpdate
fn clone(&self) -> RegexPatternSetUpdate
Returns a duplicate 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 RegexPatternSetUpdate
impl Debug for RegexPatternSetUpdate
Source§impl Default for RegexPatternSetUpdate
impl Default for RegexPatternSetUpdate
Source§fn default() -> RegexPatternSetUpdate
fn default() -> RegexPatternSetUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for RegexPatternSetUpdate
impl PartialEq for RegexPatternSetUpdate
Source§impl Serialize for RegexPatternSetUpdate
impl Serialize for RegexPatternSetUpdate
impl StructuralPartialEq for RegexPatternSetUpdate
Auto Trait Implementations§
impl Freeze for RegexPatternSetUpdate
impl RefUnwindSafe for RegexPatternSetUpdate
impl Send for RegexPatternSetUpdate
impl Sync for RegexPatternSetUpdate
impl Unpin for RegexPatternSetUpdate
impl UnwindSafe for RegexPatternSetUpdate
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