Struct aws_sdk_waf::operation::list_regex_match_sets::builders::ListRegexMatchSetsOutputBuilder
source · #[non_exhaustive]pub struct ListRegexMatchSetsOutputBuilder { /* private fields */ }Expand description
A builder for ListRegexMatchSetsOutput.
Implementations§
source§impl ListRegexMatchSetsOutputBuilder
impl ListRegexMatchSetsOutputBuilder
sourcepub fn next_marker(self, input: impl Into<String>) -> Self
pub fn next_marker(self, input: impl Into<String>) -> Self
If you have more RegexMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more RegexMatchSet objects, submit another ListRegexMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.
sourcepub fn set_next_marker(self, input: Option<String>) -> Self
pub fn set_next_marker(self, input: Option<String>) -> Self
If you have more RegexMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more RegexMatchSet objects, submit another ListRegexMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.
sourcepub fn get_next_marker(&self) -> &Option<String>
pub fn get_next_marker(&self) -> &Option<String>
If you have more RegexMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more RegexMatchSet objects, submit another ListRegexMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.
sourcepub fn regex_match_sets(self, input: RegexMatchSetSummary) -> Self
pub fn regex_match_sets(self, input: RegexMatchSetSummary) -> Self
Appends an item to regex_match_sets.
To override the contents of this collection use set_regex_match_sets.
An array of RegexMatchSetSummary objects.
sourcepub fn set_regex_match_sets(
self,
input: Option<Vec<RegexMatchSetSummary>>
) -> Self
pub fn set_regex_match_sets( self, input: Option<Vec<RegexMatchSetSummary>> ) -> Self
An array of RegexMatchSetSummary objects.
sourcepub fn get_regex_match_sets(&self) -> &Option<Vec<RegexMatchSetSummary>>
pub fn get_regex_match_sets(&self) -> &Option<Vec<RegexMatchSetSummary>>
An array of RegexMatchSetSummary objects.
sourcepub fn build(self) -> ListRegexMatchSetsOutput
pub fn build(self) -> ListRegexMatchSetsOutput
Consumes the builder and constructs a ListRegexMatchSetsOutput.
Trait Implementations§
source§impl Clone for ListRegexMatchSetsOutputBuilder
impl Clone for ListRegexMatchSetsOutputBuilder
source§fn clone(&self) -> ListRegexMatchSetsOutputBuilder
fn clone(&self) -> ListRegexMatchSetsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListRegexMatchSetsOutputBuilder
impl Default for ListRegexMatchSetsOutputBuilder
source§fn default() -> ListRegexMatchSetsOutputBuilder
fn default() -> ListRegexMatchSetsOutputBuilder
source§impl PartialEq for ListRegexMatchSetsOutputBuilder
impl PartialEq for ListRegexMatchSetsOutputBuilder
source§fn eq(&self, other: &ListRegexMatchSetsOutputBuilder) -> bool
fn eq(&self, other: &ListRegexMatchSetsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListRegexMatchSetsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListRegexMatchSetsOutputBuilder
impl RefUnwindSafe for ListRegexMatchSetsOutputBuilder
impl Send for ListRegexMatchSetsOutputBuilder
impl Sync for ListRegexMatchSetsOutputBuilder
impl Unpin for ListRegexMatchSetsOutputBuilder
impl UnwindSafe for ListRegexMatchSetsOutputBuilder
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