#[non_exhaustive]pub struct ListRegexPatternSetsOutput {
pub next_marker: Option<String>,
pub regex_pattern_sets: Option<Vec<RegexPatternSetSummary>>,
/* private fields */
}
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 have more RegexPatternSet
objects than the number that you specified for Limit
in the request, the response includes a NextMarker
value. To list more RegexPatternSet
objects, submit another ListRegexPatternSets
request, and specify the NextMarker
value from the response in the NextMarker
value in the next request.
regex_pattern_sets: Option<Vec<RegexPatternSetSummary>>
An array of RegexPatternSetSummary
objects.
Implementations§
source§impl ListRegexPatternSetsOutput
impl ListRegexPatternSetsOutput
sourcepub fn next_marker(&self) -> Option<&str>
pub fn next_marker(&self) -> Option<&str>
If you have more RegexPatternSet
objects than the number that you specified for Limit
in the request, the response includes a NextMarker
value. To list more RegexPatternSet
objects, submit another ListRegexPatternSets
request, and specify the NextMarker
value from the response in the NextMarker
value in the next request.
sourcepub fn regex_pattern_sets(&self) -> &[RegexPatternSetSummary]
pub fn regex_pattern_sets(&self) -> &[RegexPatternSetSummary]
An array of RegexPatternSetSummary
objects.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .regex_pattern_sets.is_none()
.
source§impl ListRegexPatternSetsOutput
impl ListRegexPatternSetsOutput
sourcepub fn builder() -> ListRegexPatternSetsOutputBuilder
pub fn builder() -> ListRegexPatternSetsOutputBuilder
Creates a new builder-style object to manufacture ListRegexPatternSetsOutput
.
Trait Implementations§
source§impl Clone for ListRegexPatternSetsOutput
impl Clone for ListRegexPatternSetsOutput
source§fn clone(&self) -> ListRegexPatternSetsOutput
fn clone(&self) -> ListRegexPatternSetsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListRegexPatternSetsOutput
impl Debug for ListRegexPatternSetsOutput
source§impl PartialEq for ListRegexPatternSetsOutput
impl PartialEq for ListRegexPatternSetsOutput
source§fn eq(&self, other: &ListRegexPatternSetsOutput) -> bool
fn eq(&self, other: &ListRegexPatternSetsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListRegexPatternSetsOutput
impl RequestId for ListRegexPatternSetsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.