#[non_exhaustive]pub struct RateLimitQueryArgumentBuilder { /* private fields */ }Expand description
A builder for RateLimitQueryArgument.
Implementations§
source§impl RateLimitQueryArgumentBuilder
impl RateLimitQueryArgumentBuilder
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 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 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 component contents.
sourcepub fn build(self) -> RateLimitQueryArgument
pub fn build(self) -> RateLimitQueryArgument
Consumes the builder and constructs a RateLimitQueryArgument.
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<RateLimitQueryArgumentBuilder> for RateLimitQueryArgumentBuilder
impl PartialEq<RateLimitQueryArgumentBuilder> 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 ==.