public static interface SqlInjectionMatchSet.Builder extends CopyableBuilder<SqlInjectionMatchSet.Builder,SqlInjectionMatchSet>
| Modifier and Type | Method and Description |
|---|---|
SqlInjectionMatchSet.Builder |
name(String name)
The name, if any, of the
SqlInjectionMatchSet. |
SqlInjectionMatchSet.Builder |
sqlInjectionMatchSetId(String sqlInjectionMatchSetId)
A unique identifier for a
SqlInjectionMatchSet. |
SqlInjectionMatchSet.Builder |
sqlInjectionMatchTuples(Collection<SqlInjectionMatchTuple> sqlInjectionMatchTuples)
Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.
|
SqlInjectionMatchSet.Builder |
sqlInjectionMatchTuples(Consumer<SqlInjectionMatchTuple.Builder>... sqlInjectionMatchTuples)
Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.
|
SqlInjectionMatchSet.Builder |
sqlInjectionMatchTuples(SqlInjectionMatchTuple... sqlInjectionMatchTuples)
Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.
|
copyapply, buildSqlInjectionMatchSet.Builder sqlInjectionMatchSetId(String sqlInjectionMatchSetId)
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.
sqlInjectionMatchSetId - 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.
SqlInjectionMatchSet.Builder name(String name)
The name, if any, of the SqlInjectionMatchSet.
name - The name, if any, of the SqlInjectionMatchSet.SqlInjectionMatchSet.Builder sqlInjectionMatchTuples(Collection<SqlInjectionMatchTuple> sqlInjectionMatchTuples)
Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.
sqlInjectionMatchTuples - Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.SqlInjectionMatchSet.Builder sqlInjectionMatchTuples(SqlInjectionMatchTuple... sqlInjectionMatchTuples)
Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.
sqlInjectionMatchTuples - Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.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 that creates an instance of theList.Builder avoiding
the need to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called
immediately and its result is passed to #sqlInjectionMatchTuples(List) .sqlInjectionMatchTuples - a consumer that will call methods on List.Builder #sqlInjectionMatchTuples(List) Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.