#[non_exhaustive]pub struct UpdateRegexMatchSetInput { /* private fields */ }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) -> Option<&[RegexMatchSetUpdate]>
pub fn updates(&self) -> Option<&[RegexMatchSetUpdate]>
An array of RegexMatchSetUpdate objects that you want to insert into or delete from a RegexMatchSet. For more information, see RegexMatchTuple.
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.
source§impl UpdateRegexMatchSetInput
impl UpdateRegexMatchSetInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateRegexMatchSet, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateRegexMatchSet, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateRegexMatchSet>
Trait Implementations§
source§impl Clone for UpdateRegexMatchSetInput
impl Clone for UpdateRegexMatchSetInput
source§fn clone(&self) -> UpdateRegexMatchSetInput
fn clone(&self) -> UpdateRegexMatchSetInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for UpdateRegexMatchSetInput
impl Debug for UpdateRegexMatchSetInput
source§impl PartialEq<UpdateRegexMatchSetInput> for UpdateRegexMatchSetInput
impl PartialEq<UpdateRegexMatchSetInput> for UpdateRegexMatchSetInput
source§fn eq(&self, other: &UpdateRegexMatchSetInput) -> bool
fn eq(&self, other: &UpdateRegexMatchSetInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateRegexMatchSetInput
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more