#[non_exhaustive]pub struct RateLimitQueryArgumentBuilder { /* private fields */ }Expand description
A builder for RateLimitQueryArgument.
Implementations§
source§impl RateLimitQueryArgumentBuilder
impl RateLimitQueryArgumentBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the query argument to use.
This field is required.sourcepub fn text_transformations(self, input: TextTransformation) -> Self
pub fn text_transformations(self, input: TextTransformation) -> Self
Appends an item to text_transformations.
To override the contents of this collection use set_text_transformations.
Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.
sourcepub fn set_text_transformations(
self,
input: Option<Vec<TextTransformation>>,
) -> Self
pub fn set_text_transformations( self, input: Option<Vec<TextTransformation>>, ) -> Self
Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.
sourcepub fn get_text_transformations(&self) -> &Option<Vec<TextTransformation>>
pub fn get_text_transformations(&self) -> &Option<Vec<TextTransformation>>
Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.
sourcepub fn build(self) -> Result<RateLimitQueryArgument, BuildError>
pub fn build(self) -> Result<RateLimitQueryArgument, BuildError>
Consumes the builder and constructs a RateLimitQueryArgument.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for RateLimitQueryArgumentBuilder
impl Clone for RateLimitQueryArgumentBuilder
source§fn clone(&self) -> RateLimitQueryArgumentBuilder
fn clone(&self) -> RateLimitQueryArgumentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for RateLimitQueryArgumentBuilder
impl Default for RateLimitQueryArgumentBuilder
source§fn default() -> RateLimitQueryArgumentBuilder
fn default() -> RateLimitQueryArgumentBuilder
source§impl PartialEq for RateLimitQueryArgumentBuilder
impl PartialEq for RateLimitQueryArgumentBuilder
source§fn eq(&self, other: &RateLimitQueryArgumentBuilder) -> bool
fn eq(&self, other: &RateLimitQueryArgumentBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RateLimitQueryArgumentBuilder
Auto Trait Implementations§
impl Freeze for RateLimitQueryArgumentBuilder
impl RefUnwindSafe for RateLimitQueryArgumentBuilder
impl Send for RateLimitQueryArgumentBuilder
impl Sync for RateLimitQueryArgumentBuilder
impl Unpin for RateLimitQueryArgumentBuilder
impl UnwindSafe for RateLimitQueryArgumentBuilder
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
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)
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>
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>
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 more