Struct aws_sdk_waf::operation::delete_regex_pattern_set::builders::DeleteRegexPatternSetInputBuilder
source · #[non_exhaustive]pub struct DeleteRegexPatternSetInputBuilder { /* private fields */ }
Expand description
A builder for DeleteRegexPatternSetInput
.
Implementations§
source§impl DeleteRegexPatternSetInputBuilder
impl DeleteRegexPatternSetInputBuilder
sourcepub fn regex_pattern_set_id(self, input: impl Into<String>) -> Self
pub fn regex_pattern_set_id(self, input: impl Into<String>) -> Self
The RegexPatternSetId
of the RegexPatternSet
that you want to delete. RegexPatternSetId
is returned by CreateRegexPatternSet
and by ListRegexPatternSets
.
sourcepub fn set_regex_pattern_set_id(self, input: Option<String>) -> Self
pub fn set_regex_pattern_set_id(self, input: Option<String>) -> Self
The RegexPatternSetId
of the RegexPatternSet
that you want to delete. RegexPatternSetId
is returned by CreateRegexPatternSet
and by ListRegexPatternSets
.
sourcepub fn get_regex_pattern_set_id(&self) -> &Option<String>
pub fn get_regex_pattern_set_id(&self) -> &Option<String>
The RegexPatternSetId
of the RegexPatternSet
that you want to delete. RegexPatternSetId
is returned by CreateRegexPatternSet
and by ListRegexPatternSets
.
sourcepub fn change_token(self, input: impl Into<String>) -> Self
pub fn change_token(self, input: impl Into<String>) -> Self
The value returned by the most recent call to GetChangeToken
.
sourcepub fn set_change_token(self, input: Option<String>) -> Self
pub fn set_change_token(self, input: Option<String>) -> Self
The value returned by the most recent call to GetChangeToken
.
sourcepub fn get_change_token(&self) -> &Option<String>
pub fn get_change_token(&self) -> &Option<String>
The value returned by the most recent call to GetChangeToken
.
sourcepub fn build(self) -> Result<DeleteRegexPatternSetInput, BuildError>
pub fn build(self) -> Result<DeleteRegexPatternSetInput, BuildError>
Consumes the builder and constructs a DeleteRegexPatternSetInput
.
source§impl DeleteRegexPatternSetInputBuilder
impl DeleteRegexPatternSetInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteRegexPatternSetOutput, SdkError<DeleteRegexPatternSetError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteRegexPatternSetOutput, SdkError<DeleteRegexPatternSetError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteRegexPatternSetInputBuilder
impl Clone for DeleteRegexPatternSetInputBuilder
source§fn clone(&self) -> DeleteRegexPatternSetInputBuilder
fn clone(&self) -> DeleteRegexPatternSetInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DeleteRegexPatternSetInputBuilder
impl Default for DeleteRegexPatternSetInputBuilder
source§fn default() -> DeleteRegexPatternSetInputBuilder
fn default() -> DeleteRegexPatternSetInputBuilder
source§impl PartialEq for DeleteRegexPatternSetInputBuilder
impl PartialEq for DeleteRegexPatternSetInputBuilder
source§fn eq(&self, other: &DeleteRegexPatternSetInputBuilder) -> bool
fn eq(&self, other: &DeleteRegexPatternSetInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteRegexPatternSetInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteRegexPatternSetInputBuilder
impl RefUnwindSafe for DeleteRegexPatternSetInputBuilder
impl Send for DeleteRegexPatternSetInputBuilder
impl Sync for DeleteRegexPatternSetInputBuilder
impl Unpin for DeleteRegexPatternSetInputBuilder
impl UnwindSafe for DeleteRegexPatternSetInputBuilder
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