Struct aws_sdk_waf::operation::create_regex_match_set::builders::CreateRegexMatchSetOutputBuilder
source · #[non_exhaustive]pub struct CreateRegexMatchSetOutputBuilder { /* private fields */ }
Expand description
A builder for CreateRegexMatchSetOutput
.
Implementations§
source§impl CreateRegexMatchSetOutputBuilder
impl CreateRegexMatchSetOutputBuilder
sourcepub fn regex_match_set(self, input: RegexMatchSet) -> Self
pub fn regex_match_set(self, input: RegexMatchSet) -> Self
A RegexMatchSet
that contains no RegexMatchTuple
objects.
sourcepub fn set_regex_match_set(self, input: Option<RegexMatchSet>) -> Self
pub fn set_regex_match_set(self, input: Option<RegexMatchSet>) -> Self
A RegexMatchSet
that contains no RegexMatchTuple
objects.
sourcepub fn get_regex_match_set(&self) -> &Option<RegexMatchSet>
pub fn get_regex_match_set(&self) -> &Option<RegexMatchSet>
A RegexMatchSet
that contains no RegexMatchTuple
objects.
sourcepub fn change_token(self, input: impl Into<String>) -> Self
pub fn change_token(self, input: impl Into<String>) -> Self
The ChangeToken
that you used to submit the CreateRegexMatchSet
request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus
.
sourcepub fn set_change_token(self, input: Option<String>) -> Self
pub fn set_change_token(self, input: Option<String>) -> Self
The ChangeToken
that you used to submit the CreateRegexMatchSet
request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus
.
sourcepub fn get_change_token(&self) -> &Option<String>
pub fn get_change_token(&self) -> &Option<String>
The ChangeToken
that you used to submit the CreateRegexMatchSet
request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus
.
sourcepub fn build(self) -> CreateRegexMatchSetOutput
pub fn build(self) -> CreateRegexMatchSetOutput
Consumes the builder and constructs a CreateRegexMatchSetOutput
.
Trait Implementations§
source§impl Clone for CreateRegexMatchSetOutputBuilder
impl Clone for CreateRegexMatchSetOutputBuilder
source§fn clone(&self) -> CreateRegexMatchSetOutputBuilder
fn clone(&self) -> CreateRegexMatchSetOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateRegexMatchSetOutputBuilder
impl Default for CreateRegexMatchSetOutputBuilder
source§fn default() -> CreateRegexMatchSetOutputBuilder
fn default() -> CreateRegexMatchSetOutputBuilder
source§impl PartialEq for CreateRegexMatchSetOutputBuilder
impl PartialEq for CreateRegexMatchSetOutputBuilder
source§fn eq(&self, other: &CreateRegexMatchSetOutputBuilder) -> bool
fn eq(&self, other: &CreateRegexMatchSetOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateRegexMatchSetOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateRegexMatchSetOutputBuilder
impl RefUnwindSafe for CreateRegexMatchSetOutputBuilder
impl Send for CreateRegexMatchSetOutputBuilder
impl Sync for CreateRegexMatchSetOutputBuilder
impl Unpin for CreateRegexMatchSetOutputBuilder
impl UnwindSafe for CreateRegexMatchSetOutputBuilder
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