#[non_exhaustive]pub struct ListRegexPatternSetsInput {
pub next_marker: Option<String>,
pub limit: Option<i32>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.next_marker: Option<String>
If you specify a value for Limit
and you have more RegexPatternSet
objects than the value of Limit
, AWS WAF returns a NextMarker
value in the response that allows you to list another group of RegexPatternSet
objects. For the second and subsequent ListRegexPatternSets
requests, specify the value of NextMarker
from the previous response to get information about another batch of RegexPatternSet
objects.
limit: Option<i32>
Specifies the number of RegexPatternSet
objects that you want AWS WAF to return for this request. If you have more RegexPatternSet
objects than the number you specify for Limit
, the response includes a NextMarker
value that you can use to get another batch of RegexPatternSet
objects.
Implementations§
source§impl ListRegexPatternSetsInput
impl ListRegexPatternSetsInput
sourcepub fn next_marker(&self) -> Option<&str>
pub fn next_marker(&self) -> Option<&str>
If you specify a value for Limit
and you have more RegexPatternSet
objects than the value of Limit
, AWS WAF returns a NextMarker
value in the response that allows you to list another group of RegexPatternSet
objects. For the second and subsequent ListRegexPatternSets
requests, specify the value of NextMarker
from the previous response to get information about another batch of RegexPatternSet
objects.
sourcepub fn limit(&self) -> Option<i32>
pub fn limit(&self) -> Option<i32>
Specifies the number of RegexPatternSet
objects that you want AWS WAF to return for this request. If you have more RegexPatternSet
objects than the number you specify for Limit
, the response includes a NextMarker
value that you can use to get another batch of RegexPatternSet
objects.
source§impl ListRegexPatternSetsInput
impl ListRegexPatternSetsInput
sourcepub fn builder() -> ListRegexPatternSetsInputBuilder
pub fn builder() -> ListRegexPatternSetsInputBuilder
Creates a new builder-style object to manufacture ListRegexPatternSetsInput
.
Trait Implementations§
source§impl Clone for ListRegexPatternSetsInput
impl Clone for ListRegexPatternSetsInput
source§fn clone(&self) -> ListRegexPatternSetsInput
fn clone(&self) -> ListRegexPatternSetsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListRegexPatternSetsInput
impl Debug for ListRegexPatternSetsInput
source§impl PartialEq for ListRegexPatternSetsInput
impl PartialEq for ListRegexPatternSetsInput
source§fn eq(&self, other: &ListRegexPatternSetsInput) -> bool
fn eq(&self, other: &ListRegexPatternSetsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListRegexPatternSetsInput
Auto Trait Implementations§
impl Freeze for ListRegexPatternSetsInput
impl RefUnwindSafe for ListRegexPatternSetsInput
impl Send for ListRegexPatternSetsInput
impl Sync for ListRegexPatternSetsInput
impl Unpin for ListRegexPatternSetsInput
impl UnwindSafe for ListRegexPatternSetsInput
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> 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