Struct aws_sdk_waf::operation::list_regex_pattern_sets::builders::ListRegexPatternSetsInputBuilder
source · #[non_exhaustive]pub struct ListRegexPatternSetsInputBuilder { /* private fields */ }
Expand description
A builder for ListRegexPatternSetsInput
.
Implementations§
source§impl ListRegexPatternSetsInputBuilder
impl ListRegexPatternSetsInputBuilder
sourcepub fn next_marker(self, input: impl Into<String>) -> Self
pub fn next_marker(self, input: impl Into<String>) -> Self
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 set_next_marker(self, input: Option<String>) -> Self
pub fn set_next_marker(self, input: Option<String>) -> Self
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 get_next_marker(&self) -> &Option<String>
pub fn get_next_marker(&self) -> &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.
sourcepub fn limit(self, input: i32) -> Self
pub fn limit(self, input: i32) -> Self
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.
sourcepub fn set_limit(self, input: Option<i32>) -> Self
pub fn set_limit(self, input: Option<i32>) -> Self
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.
sourcepub fn get_limit(&self) -> &Option<i32>
pub fn get_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.
sourcepub fn build(self) -> Result<ListRegexPatternSetsInput, BuildError>
pub fn build(self) -> Result<ListRegexPatternSetsInput, BuildError>
Consumes the builder and constructs a ListRegexPatternSetsInput
.
source§impl ListRegexPatternSetsInputBuilder
impl ListRegexPatternSetsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListRegexPatternSetsOutput, SdkError<ListRegexPatternSetsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListRegexPatternSetsOutput, SdkError<ListRegexPatternSetsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListRegexPatternSetsInputBuilder
impl Clone for ListRegexPatternSetsInputBuilder
source§fn clone(&self) -> ListRegexPatternSetsInputBuilder
fn clone(&self) -> ListRegexPatternSetsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListRegexPatternSetsInputBuilder
impl Default for ListRegexPatternSetsInputBuilder
source§fn default() -> ListRegexPatternSetsInputBuilder
fn default() -> ListRegexPatternSetsInputBuilder
source§impl PartialEq for ListRegexPatternSetsInputBuilder
impl PartialEq for ListRegexPatternSetsInputBuilder
source§fn eq(&self, other: &ListRegexPatternSetsInputBuilder) -> bool
fn eq(&self, other: &ListRegexPatternSetsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListRegexPatternSetsInputBuilder
Auto Trait Implementations§
impl Freeze for ListRegexPatternSetsInputBuilder
impl RefUnwindSafe for ListRegexPatternSetsInputBuilder
impl Send for ListRegexPatternSetsInputBuilder
impl Sync for ListRegexPatternSetsInputBuilder
impl Unpin for ListRegexPatternSetsInputBuilder
impl UnwindSafe for ListRegexPatternSetsInputBuilder
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