Interface CfnXssMatchSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnXssMatchSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:36.137Z")
@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.regional.*; CfnXssMatchSetProps cfnXssMatchSetProps = CfnXssMatchSetProps.builder() .name("name") // the properties below are optional .xssMatchTuples(List.of(XssMatchTupleProperty.builder() .fieldToMatch(FieldToMatchProperty.builder() .type("type") // the properties below are optional .data("data") .build()) .textTransformation("textTransformation") .build())) .build();
-
Nested Class Summary
Modifier 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
.default Object
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
. -
getXssMatchTuples
Specifies the parts of web requests that you want to inspect for cross-site scripting attacks. -
builder
- Returns:
- a
CfnXssMatchSetProps.Builder
ofCfnXssMatchSetProps
-