#[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 ==
.impl StructuralPartialEq for UpdateRegexMatchSetInput
Auto Trait Implementations§
impl Freeze for UpdateRegexMatchSetInput
impl RefUnwindSafe for UpdateRegexMatchSetInput
impl Send for UpdateRegexMatchSetInput
impl Sync for UpdateRegexMatchSetInput
impl Unpin for UpdateRegexMatchSetInput
impl UnwindSafe for UpdateRegexMatchSetInput
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