Interface XssMatchSet.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<XssMatchSet.Builder,XssMatchSet>,SdkBuilder<XssMatchSet.Builder,XssMatchSet>,SdkPojo
- Enclosing class:
- XssMatchSet
public static interface XssMatchSet.Builder extends SdkPojo, CopyableBuilder<XssMatchSet.Builder,XssMatchSet>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XssMatchSet.Buildername(String name)The name, if any, of theXssMatchSet.XssMatchSet.BuilderxssMatchSetId(String xssMatchSetId)A unique identifier for anXssMatchSet.XssMatchSet.BuilderxssMatchTuples(Collection<XssMatchTuple> xssMatchTuples)Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.XssMatchSet.BuilderxssMatchTuples(Consumer<XssMatchTuple.Builder>... xssMatchTuples)Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.XssMatchSet.BuilderxssMatchTuples(XssMatchTuple... xssMatchTuples)Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.-
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
-
xssMatchSetId
XssMatchSet.Builder xssMatchSetId(String xssMatchSetId)
A unique identifier for an
XssMatchSet. You useXssMatchSetIdto get information about anXssMatchSet(see GetXssMatchSet), update anXssMatchSet(see UpdateXssMatchSet), insert anXssMatchSetinto aRuleor delete one from aRule(see UpdateRule), and delete anXssMatchSetfrom AWS WAF (see DeleteXssMatchSet).XssMatchSetIdis returned by CreateXssMatchSet and by ListXssMatchSets.- Parameters:
xssMatchSetId- A unique identifier for anXssMatchSet. You useXssMatchSetIdto get information about anXssMatchSet(see GetXssMatchSet), update anXssMatchSet(see UpdateXssMatchSet), insert anXssMatchSetinto aRuleor delete one from aRule(see UpdateRule), and delete anXssMatchSetfrom AWS WAF (see DeleteXssMatchSet).XssMatchSetIdis returned by CreateXssMatchSet and by ListXssMatchSets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
XssMatchSet.Builder name(String name)
The name, if any, of the
XssMatchSet.- Parameters:
name- The name, if any, of theXssMatchSet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
xssMatchTuples
XssMatchSet.Builder xssMatchTuples(Collection<XssMatchTuple> xssMatchTuples)
Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.
- Parameters:
xssMatchTuples- Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
xssMatchTuples
XssMatchSet.Builder xssMatchTuples(XssMatchTuple... xssMatchTuples)
Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.
- Parameters:
xssMatchTuples- Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
xssMatchTuples
XssMatchSet.Builder xssMatchTuples(Consumer<XssMatchTuple.Builder>... xssMatchTuples)
Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.
This is a convenience method that creates an instance of theXssMatchTuple.Builderavoiding the need to create one manually viaXssMatchTuple.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#xssMatchTuples(List.) - Parameters:
xssMatchTuples- a consumer that will call methods onXssMatchTuple.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#xssMatchTuples(java.util.Collection)
-
-