#[non_exhaustive]pub struct UpdateRegexMatchSetInput {
pub regex_match_set_id: Option<String>,
pub updates: Option<Vec<RegexMatchSetUpdate>>,
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_match_set_id: Option<String>
The RegexMatchSetId
of the RegexMatchSet
that you want to update. RegexMatchSetId
is returned by CreateRegexMatchSet
and by ListRegexMatchSets
.
updates: Option<Vec<RegexMatchSetUpdate>>
An array of RegexMatchSetUpdate
objects that you want to insert into or delete from a RegexMatchSet
. For more information, see RegexMatchTuple
.
change_token: Option<String>
The value returned by the most recent call to GetChangeToken
.
Implementations§
source§impl UpdateRegexMatchSetInput
impl UpdateRegexMatchSetInput
sourcepub fn regex_match_set_id(&self) -> Option<&str>
pub fn regex_match_set_id(&self) -> Option<&str>
The RegexMatchSetId
of the RegexMatchSet
that you want to update. RegexMatchSetId
is returned by CreateRegexMatchSet
and by ListRegexMatchSets
.
sourcepub fn updates(&self) -> &[RegexMatchSetUpdate]
pub fn updates(&self) -> &[RegexMatchSetUpdate]
An array of RegexMatchSetUpdate
objects that you want to insert into or delete from a RegexMatchSet
. For more information, see RegexMatchTuple
.
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 UpdateRegexMatchSetInput
impl UpdateRegexMatchSetInput
sourcepub fn builder() -> UpdateRegexMatchSetInputBuilder
pub fn builder() -> UpdateRegexMatchSetInputBuilder
Creates a new builder-style object to manufacture UpdateRegexMatchSetInput
.
Trait Implementations§
source§impl Clone for UpdateRegexMatchSetInput
impl Clone for UpdateRegexMatchSetInput
source§fn clone(&self) -> UpdateRegexMatchSetInput
fn clone(&self) -> UpdateRegexMatchSetInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateRegexMatchSetInput
impl Debug for UpdateRegexMatchSetInput
source§impl PartialEq for UpdateRegexMatchSetInput
impl PartialEq for UpdateRegexMatchSetInput
source§fn eq(&self, other: &UpdateRegexMatchSetInput) -> bool
fn eq(&self, other: &UpdateRegexMatchSetInput) -> bool
self
and other
values to be equal, and is used
by ==
.