Interface CfnXssMatchSetProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnXssMatchSetProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:24.772Z") @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: