#[non_exhaustive]pub struct ListRegexMatchSetsInput {
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 RegexMatchSet objects than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of ByteMatchSets. For the second and subsequent ListRegexMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of RegexMatchSet objects.
limit: Option<i32>Specifies the number of RegexMatchSet objects that you want AWS WAF to return for this request. If you have more RegexMatchSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of RegexMatchSet objects.
Implementations§
source§impl ListRegexMatchSetsInput
impl ListRegexMatchSetsInput
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 RegexMatchSet objects than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of ByteMatchSets. For the second and subsequent ListRegexMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of RegexMatchSet objects.
sourcepub fn limit(&self) -> Option<i32>
pub fn limit(&self) -> Option<i32>
Specifies the number of RegexMatchSet objects that you want AWS WAF to return for this request. If you have more RegexMatchSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of RegexMatchSet objects.
source§impl ListRegexMatchSetsInput
impl ListRegexMatchSetsInput
sourcepub fn builder() -> ListRegexMatchSetsInputBuilder
pub fn builder() -> ListRegexMatchSetsInputBuilder
Creates a new builder-style object to manufacture ListRegexMatchSetsInput.
Trait Implementations§
source§impl Clone for ListRegexMatchSetsInput
impl Clone for ListRegexMatchSetsInput
source§fn clone(&self) -> ListRegexMatchSetsInput
fn clone(&self) -> ListRegexMatchSetsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListRegexMatchSetsInput
impl Debug for ListRegexMatchSetsInput
source§impl PartialEq for ListRegexMatchSetsInput
impl PartialEq for ListRegexMatchSetsInput
source§fn eq(&self, other: &ListRegexMatchSetsInput) -> bool
fn eq(&self, other: &ListRegexMatchSetsInput) -> bool
self and other values to be equal, and is used
by ==.