Interface SqlInjectionMatchSet.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<SqlInjectionMatchSet.Builder,
,SqlInjectionMatchSet> SdkBuilder<SqlInjectionMatchSet.Builder,
,SqlInjectionMatchSet> SdkPojo
- Enclosing class:
SqlInjectionMatchSet
-
Method Summary
Modifier and TypeMethodDescriptionThe name, if any, of theSqlInjectionMatchSet
.sqlInjectionMatchSetId
(String sqlInjectionMatchSetId) A unique identifier for aSqlInjectionMatchSet
.sqlInjectionMatchTuples
(Collection<SqlInjectionMatchTuple> sqlInjectionMatchTuples) Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.sqlInjectionMatchTuples
(Consumer<SqlInjectionMatchTuple.Builder>... sqlInjectionMatchTuples) Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.sqlInjectionMatchTuples
(SqlInjectionMatchTuple... sqlInjectionMatchTuples) Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
sqlInjectionMatchSetId
A unique identifier for a
SqlInjectionMatchSet
. You useSqlInjectionMatchSetId
to get information about aSqlInjectionMatchSet
(see GetSqlInjectionMatchSet), update aSqlInjectionMatchSet
(see UpdateSqlInjectionMatchSet), insert aSqlInjectionMatchSet
into aRule
or delete one from aRule
(see UpdateRule), and delete aSqlInjectionMatchSet
from AWS WAF (see DeleteSqlInjectionMatchSet).SqlInjectionMatchSetId
is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.- Parameters:
sqlInjectionMatchSetId
- A unique identifier for aSqlInjectionMatchSet
. You useSqlInjectionMatchSetId
to get information about aSqlInjectionMatchSet
(see GetSqlInjectionMatchSet), update aSqlInjectionMatchSet
(see UpdateSqlInjectionMatchSet), insert aSqlInjectionMatchSet
into aRule
or delete one from aRule
(see UpdateRule), and delete aSqlInjectionMatchSet
from AWS WAF (see DeleteSqlInjectionMatchSet).SqlInjectionMatchSetId
is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
The name, if any, of the
SqlInjectionMatchSet
.- Parameters:
name
- The name, if any, of theSqlInjectionMatchSet
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sqlInjectionMatchTuples
SqlInjectionMatchSet.Builder sqlInjectionMatchTuples(Collection<SqlInjectionMatchTuple> sqlInjectionMatchTuples) Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.
- Parameters:
sqlInjectionMatchTuples
- Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sqlInjectionMatchTuples
SqlInjectionMatchSet.Builder sqlInjectionMatchTuples(SqlInjectionMatchTuple... sqlInjectionMatchTuples) Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.
- Parameters:
sqlInjectionMatchTuples
- Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sqlInjectionMatchTuples
SqlInjectionMatchSet.Builder sqlInjectionMatchTuples(Consumer<SqlInjectionMatchTuple.Builder>... sqlInjectionMatchTuples) Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.
This is a convenience method that creates an instance of theSqlInjectionMatchTuple.Builder
avoiding the need to create one manually viaSqlInjectionMatchTuple.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosqlInjectionMatchTuples(List<SqlInjectionMatchTuple>)
.- Parameters:
sqlInjectionMatchTuples
- a consumer that will call methods onSqlInjectionMatchTuple.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-