Struct aws_sdk_wafv2::operation::list_regex_pattern_sets::builders::ListRegexPatternSetsOutputBuilder
source · #[non_exhaustive]pub struct ListRegexPatternSetsOutputBuilder { /* private fields */ }
Expand description
A builder for ListRegexPatternSetsOutput
.
Implementations§
source§impl ListRegexPatternSetsOutputBuilder
impl ListRegexPatternSetsOutputBuilder
sourcepub fn next_marker(self, input: impl Into<String>) -> Self
pub fn next_marker(self, input: impl Into<String>) -> Self
When you request a list of objects with a Limit
setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker
value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.
sourcepub fn set_next_marker(self, input: Option<String>) -> Self
pub fn set_next_marker(self, input: Option<String>) -> Self
When you request a list of objects with a Limit
setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker
value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.
sourcepub fn get_next_marker(&self) -> &Option<String>
pub fn get_next_marker(&self) -> &Option<String>
When you request a list of objects with a Limit
setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker
value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.
sourcepub fn regex_pattern_sets(self, input: RegexPatternSetSummary) -> Self
pub fn regex_pattern_sets(self, input: RegexPatternSetSummary) -> Self
Appends an item to regex_pattern_sets
.
To override the contents of this collection use set_regex_pattern_sets
.
Array of regex pattern sets. If you specified a Limit
in your request, this might not be the full list.
sourcepub fn set_regex_pattern_sets(
self,
input: Option<Vec<RegexPatternSetSummary>>,
) -> Self
pub fn set_regex_pattern_sets( self, input: Option<Vec<RegexPatternSetSummary>>, ) -> Self
Array of regex pattern sets. If you specified a Limit
in your request, this might not be the full list.
sourcepub fn get_regex_pattern_sets(&self) -> &Option<Vec<RegexPatternSetSummary>>
pub fn get_regex_pattern_sets(&self) -> &Option<Vec<RegexPatternSetSummary>>
Array of regex pattern sets. If you specified a Limit
in your request, this might not be the full list.
sourcepub fn build(self) -> ListRegexPatternSetsOutput
pub fn build(self) -> ListRegexPatternSetsOutput
Consumes the builder and constructs a ListRegexPatternSetsOutput
.
Trait Implementations§
source§impl Clone for ListRegexPatternSetsOutputBuilder
impl Clone for ListRegexPatternSetsOutputBuilder
source§fn clone(&self) -> ListRegexPatternSetsOutputBuilder
fn clone(&self) -> ListRegexPatternSetsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListRegexPatternSetsOutputBuilder
impl Default for ListRegexPatternSetsOutputBuilder
source§fn default() -> ListRegexPatternSetsOutputBuilder
fn default() -> ListRegexPatternSetsOutputBuilder
source§impl PartialEq for ListRegexPatternSetsOutputBuilder
impl PartialEq for ListRegexPatternSetsOutputBuilder
source§fn eq(&self, other: &ListRegexPatternSetsOutputBuilder) -> bool
fn eq(&self, other: &ListRegexPatternSetsOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListRegexPatternSetsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListRegexPatternSetsOutputBuilder
impl RefUnwindSafe for ListRegexPatternSetsOutputBuilder
impl Send for ListRegexPatternSetsOutputBuilder
impl Sync for ListRegexPatternSetsOutputBuilder
impl Unpin for ListRegexPatternSetsOutputBuilder
impl UnwindSafe for ListRegexPatternSetsOutputBuilder
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