Interface CfnXssMatchSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnXssMatchSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.94.0 (build b380f01)",
date="2024-03-01T20:58:32.134Z")
@Stability(Stable)
public interface CfnXssMatchSetProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnXssMatchSet
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.waf.*; CfnXssMatchSetProps cfnXssMatchSetProps = CfnXssMatchSetProps.builder() .name("name") .xssMatchTuples(List.of(XssMatchTupleProperty.builder() .fieldToMatch(FieldToMatchProperty.builder() .type("type") // the properties below are optional .data("data") .build()) .textTransformation("textTransformation") .build())) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnXssMatchSetProps
static final class
An implementation forCfnXssMatchSetProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnXssMatchSetProps.Builder
builder()
getName()
The name, if any, of theXssMatchSet
.Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name, if any, of theXssMatchSet
.- See Also:
-
getXssMatchTuples
Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.- See Also:
-
builder
- Returns:
- a
CfnXssMatchSetProps.Builder
ofCfnXssMatchSetProps
-