#[non_exhaustive]pub struct UpdateRegexPatternSetInput {
pub regex_pattern_set_id: Option<String>,
pub updates: Option<Vec<RegexPatternSetUpdate>>,
pub change_token: Option<String>,
}
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.regex_pattern_set_id: Option<String>
The RegexPatternSetId
of the RegexPatternSet
that you want to update. RegexPatternSetId
is returned by CreateRegexPatternSet
and by ListRegexPatternSets
.
updates: Option<Vec<RegexPatternSetUpdate>>
An array of RegexPatternSetUpdate
objects that you want to insert into or delete from a RegexPatternSet
.
change_token: Option<String>
The value returned by the most recent call to GetChangeToken
.
Implementations§
source§impl UpdateRegexPatternSetInput
impl UpdateRegexPatternSetInput
sourcepub fn regex_pattern_set_id(&self) -> Option<&str>
pub fn regex_pattern_set_id(&self) -> Option<&str>
The RegexPatternSetId
of the RegexPatternSet
that you want to update. RegexPatternSetId
is returned by CreateRegexPatternSet
and by ListRegexPatternSets
.
sourcepub fn updates(&self) -> &[RegexPatternSetUpdate]
pub fn updates(&self) -> &[RegexPatternSetUpdate]
An array of RegexPatternSetUpdate
objects that you want to insert into or delete from a RegexPatternSet
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .updates.is_none()
.
sourcepub fn change_token(&self) -> Option<&str>
pub fn change_token(&self) -> Option<&str>
The value returned by the most recent call to GetChangeToken
.
source§impl UpdateRegexPatternSetInput
impl UpdateRegexPatternSetInput
sourcepub fn builder() -> UpdateRegexPatternSetInputBuilder
pub fn builder() -> UpdateRegexPatternSetInputBuilder
Creates a new builder-style object to manufacture UpdateRegexPatternSetInput
.
Trait Implementations§
source§impl Clone for UpdateRegexPatternSetInput
impl Clone for UpdateRegexPatternSetInput
source§fn clone(&self) -> UpdateRegexPatternSetInput
fn clone(&self) -> UpdateRegexPatternSetInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateRegexPatternSetInput
impl Debug for UpdateRegexPatternSetInput
source§impl PartialEq for UpdateRegexPatternSetInput
impl PartialEq for UpdateRegexPatternSetInput
source§fn eq(&self, other: &UpdateRegexPatternSetInput) -> bool
fn eq(&self, other: &UpdateRegexPatternSetInput) -> bool
self
and other
values to be equal, and is used
by ==
.