Struct aws_sdk_wafv2::types::builders::RateLimitHeaderBuilder
source · #[non_exhaustive]pub struct RateLimitHeaderBuilder { /* private fields */ }Expand description
A builder for RateLimitHeader.
Implementations§
source§impl RateLimitHeaderBuilder
impl RateLimitHeaderBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the header 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<RateLimitHeader, BuildError>
pub fn build(self) -> Result<RateLimitHeader, BuildError>
Consumes the builder and constructs a RateLimitHeader.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for RateLimitHeaderBuilder
impl Clone for RateLimitHeaderBuilder
source§fn clone(&self) -> RateLimitHeaderBuilder
fn clone(&self) -> RateLimitHeaderBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for RateLimitHeaderBuilder
impl Debug for RateLimitHeaderBuilder
source§impl Default for RateLimitHeaderBuilder
impl Default for RateLimitHeaderBuilder
source§fn default() -> RateLimitHeaderBuilder
fn default() -> RateLimitHeaderBuilder
source§impl PartialEq for RateLimitHeaderBuilder
impl PartialEq for RateLimitHeaderBuilder
impl StructuralPartialEq for RateLimitHeaderBuilder
Auto Trait Implementations§
impl Freeze for RateLimitHeaderBuilder
impl RefUnwindSafe for RateLimitHeaderBuilder
impl Send for RateLimitHeaderBuilder
impl Sync for RateLimitHeaderBuilder
impl Unpin for RateLimitHeaderBuilder
impl UnwindSafe for RateLimitHeaderBuilder
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