Struct aws_sdk_waf::operation::get_sql_injection_match_set::builders::GetSqlInjectionMatchSetOutputBuilder
source · #[non_exhaustive]pub struct GetSqlInjectionMatchSetOutputBuilder { /* private fields */ }
Expand description
A builder for GetSqlInjectionMatchSetOutput
.
Implementations§
source§impl GetSqlInjectionMatchSetOutputBuilder
impl GetSqlInjectionMatchSetOutputBuilder
sourcepub fn sql_injection_match_set(self, input: SqlInjectionMatchSet) -> Self
pub fn sql_injection_match_set(self, input: SqlInjectionMatchSet) -> Self
Information about the SqlInjectionMatchSet
that you specified in the GetSqlInjectionMatchSet
request. For more information, see the following topics:
-
SqlInjectionMatchSet
: ContainsName
,SqlInjectionMatchSetId
, and an array ofSqlInjectionMatchTuple
objects -
SqlInjectionMatchTuple
: EachSqlInjectionMatchTuple
object containsFieldToMatch
andTextTransformation
-
FieldToMatch
: ContainsData
andType
sourcepub fn set_sql_injection_match_set(
self,
input: Option<SqlInjectionMatchSet>
) -> Self
pub fn set_sql_injection_match_set( self, input: Option<SqlInjectionMatchSet> ) -> Self
Information about the SqlInjectionMatchSet
that you specified in the GetSqlInjectionMatchSet
request. For more information, see the following topics:
-
SqlInjectionMatchSet
: ContainsName
,SqlInjectionMatchSetId
, and an array ofSqlInjectionMatchTuple
objects -
SqlInjectionMatchTuple
: EachSqlInjectionMatchTuple
object containsFieldToMatch
andTextTransformation
-
FieldToMatch
: ContainsData
andType
sourcepub fn get_sql_injection_match_set(&self) -> &Option<SqlInjectionMatchSet>
pub fn get_sql_injection_match_set(&self) -> &Option<SqlInjectionMatchSet>
Information about the SqlInjectionMatchSet
that you specified in the GetSqlInjectionMatchSet
request. For more information, see the following topics:
-
SqlInjectionMatchSet
: ContainsName
,SqlInjectionMatchSetId
, and an array ofSqlInjectionMatchTuple
objects -
SqlInjectionMatchTuple
: EachSqlInjectionMatchTuple
object containsFieldToMatch
andTextTransformation
-
FieldToMatch
: ContainsData
andType
sourcepub fn build(self) -> GetSqlInjectionMatchSetOutput
pub fn build(self) -> GetSqlInjectionMatchSetOutput
Consumes the builder and constructs a GetSqlInjectionMatchSetOutput
.
Trait Implementations§
source§impl Clone for GetSqlInjectionMatchSetOutputBuilder
impl Clone for GetSqlInjectionMatchSetOutputBuilder
source§fn clone(&self) -> GetSqlInjectionMatchSetOutputBuilder
fn clone(&self) -> GetSqlInjectionMatchSetOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetSqlInjectionMatchSetOutputBuilder
impl Default for GetSqlInjectionMatchSetOutputBuilder
source§fn default() -> GetSqlInjectionMatchSetOutputBuilder
fn default() -> GetSqlInjectionMatchSetOutputBuilder
source§impl PartialEq for GetSqlInjectionMatchSetOutputBuilder
impl PartialEq for GetSqlInjectionMatchSetOutputBuilder
source§fn eq(&self, other: &GetSqlInjectionMatchSetOutputBuilder) -> bool
fn eq(&self, other: &GetSqlInjectionMatchSetOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetSqlInjectionMatchSetOutputBuilder
Auto Trait Implementations§
impl Freeze for GetSqlInjectionMatchSetOutputBuilder
impl RefUnwindSafe for GetSqlInjectionMatchSetOutputBuilder
impl Send for GetSqlInjectionMatchSetOutputBuilder
impl Sync for GetSqlInjectionMatchSetOutputBuilder
impl Unpin for GetSqlInjectionMatchSetOutputBuilder
impl UnwindSafe for GetSqlInjectionMatchSetOutputBuilder
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