Interface SqlInjectionMatchSet.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SqlInjectionMatchSet.Builder,SqlInjectionMatchSet>,SdkBuilder<SqlInjectionMatchSet.Builder,SqlInjectionMatchSet>,SdkPojo
- Enclosing class:
- SqlInjectionMatchSet
public static interface SqlInjectionMatchSet.Builder extends SdkPojo, CopyableBuilder<SqlInjectionMatchSet.Builder,SqlInjectionMatchSet>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlInjectionMatchSet.Buildername(String name)The name, if any, of theSqlInjectionMatchSet.SqlInjectionMatchSet.BuildersqlInjectionMatchSetId(String sqlInjectionMatchSetId)A unique identifier for aSqlInjectionMatchSet.SqlInjectionMatchSet.BuildersqlInjectionMatchTuples(Collection<SqlInjectionMatchTuple> sqlInjectionMatchTuples)Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.SqlInjectionMatchSet.BuildersqlInjectionMatchTuples(Consumer<SqlInjectionMatchTuple.Builder>... sqlInjectionMatchTuples)Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.SqlInjectionMatchSet.BuildersqlInjectionMatchTuples(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 Detail
-
sqlInjectionMatchSetId
SqlInjectionMatchSet.Builder sqlInjectionMatchSetId(String sqlInjectionMatchSetId)
A unique identifier for a
SqlInjectionMatchSet. You useSqlInjectionMatchSetIdto get information about aSqlInjectionMatchSet(see GetSqlInjectionMatchSet), update aSqlInjectionMatchSet(see UpdateSqlInjectionMatchSet), insert aSqlInjectionMatchSetinto aRuleor delete one from aRule(see UpdateRule), and delete aSqlInjectionMatchSetfrom AWS WAF (see DeleteSqlInjectionMatchSet).SqlInjectionMatchSetIdis returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.- Parameters:
sqlInjectionMatchSetId- A unique identifier for aSqlInjectionMatchSet. You useSqlInjectionMatchSetIdto get information about aSqlInjectionMatchSet(see GetSqlInjectionMatchSet), update aSqlInjectionMatchSet(see UpdateSqlInjectionMatchSet), insert aSqlInjectionMatchSetinto aRuleor delete one from aRule(see UpdateRule), and delete aSqlInjectionMatchSetfrom AWS WAF (see DeleteSqlInjectionMatchSet).SqlInjectionMatchSetIdis returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
SqlInjectionMatchSet.Builder name(String 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.Builderavoiding the need to create one manually viaSqlInjectionMatchTuple.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#sqlInjectionMatchTuples(List.) - 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:
#sqlInjectionMatchTuples(java.util.Collection)
-
-