#[non_exhaustive]pub struct SqlInjectionMatchSetSummaryBuilder { /* private fields */ }Expand description
A builder for SqlInjectionMatchSetSummary.
Implementations§
source§impl SqlInjectionMatchSetSummaryBuilder
impl SqlInjectionMatchSetSummaryBuilder
sourcepub fn sql_injection_match_set_id(self, input: impl Into<String>) -> Self
pub fn sql_injection_match_set_id(self, input: impl Into<String>) -> Self
A unique identifier for a SqlInjectionMatchSet. You use SqlInjectionMatchSetId to get information about a SqlInjectionMatchSet (see GetSqlInjectionMatchSet), update a SqlInjectionMatchSet (see UpdateSqlInjectionMatchSet), insert a SqlInjectionMatchSet into a Rule or delete one from a Rule (see UpdateRule), and delete a SqlInjectionMatchSet from AWS WAF (see DeleteSqlInjectionMatchSet).
SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.
sourcepub fn set_sql_injection_match_set_id(self, input: Option<String>) -> Self
pub fn set_sql_injection_match_set_id(self, input: Option<String>) -> Self
A unique identifier for a SqlInjectionMatchSet. You use SqlInjectionMatchSetId to get information about a SqlInjectionMatchSet (see GetSqlInjectionMatchSet), update a SqlInjectionMatchSet (see UpdateSqlInjectionMatchSet), insert a SqlInjectionMatchSet into a Rule or delete one from a Rule (see UpdateRule), and delete a SqlInjectionMatchSet from AWS WAF (see DeleteSqlInjectionMatchSet).
SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.
sourcepub fn get_sql_injection_match_set_id(&self) -> &Option<String>
pub fn get_sql_injection_match_set_id(&self) -> &Option<String>
A unique identifier for a SqlInjectionMatchSet. You use SqlInjectionMatchSetId to get information about a SqlInjectionMatchSet (see GetSqlInjectionMatchSet), update a SqlInjectionMatchSet (see UpdateSqlInjectionMatchSet), insert a SqlInjectionMatchSet into a Rule or delete one from a Rule (see UpdateRule), and delete a SqlInjectionMatchSet from AWS WAF (see DeleteSqlInjectionMatchSet).
SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the SqlInjectionMatchSet, if any, specified by Id.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the SqlInjectionMatchSet, if any, specified by Id.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
The name of the SqlInjectionMatchSet, if any, specified by Id.
sourcepub fn build(self) -> Result<SqlInjectionMatchSetSummary, BuildError>
pub fn build(self) -> Result<SqlInjectionMatchSetSummary, BuildError>
Consumes the builder and constructs a SqlInjectionMatchSetSummary.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for SqlInjectionMatchSetSummaryBuilder
impl Clone for SqlInjectionMatchSetSummaryBuilder
source§fn clone(&self) -> SqlInjectionMatchSetSummaryBuilder
fn clone(&self) -> SqlInjectionMatchSetSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for SqlInjectionMatchSetSummaryBuilder
impl Default for SqlInjectionMatchSetSummaryBuilder
source§fn default() -> SqlInjectionMatchSetSummaryBuilder
fn default() -> SqlInjectionMatchSetSummaryBuilder
source§impl PartialEq for SqlInjectionMatchSetSummaryBuilder
impl PartialEq for SqlInjectionMatchSetSummaryBuilder
source§fn eq(&self, other: &SqlInjectionMatchSetSummaryBuilder) -> bool
fn eq(&self, other: &SqlInjectionMatchSetSummaryBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SqlInjectionMatchSetSummaryBuilder
Auto Trait Implementations§
impl Freeze for SqlInjectionMatchSetSummaryBuilder
impl RefUnwindSafe for SqlInjectionMatchSetSummaryBuilder
impl Send for SqlInjectionMatchSetSummaryBuilder
impl Sync for SqlInjectionMatchSetSummaryBuilder
impl Unpin for SqlInjectionMatchSetSummaryBuilder
impl UnwindSafe for SqlInjectionMatchSetSummaryBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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