Interface CfnRegexPatternSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRegexPatternSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:28.278Z")
@Stability(Stable)
public interface CfnRegexPatternSetProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnRegexPatternSet
.
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.*; CfnRegexPatternSetProps cfnRegexPatternSetProps = CfnRegexPatternSetProps.builder() .name("name") .regexPatternStrings(List.of("regexPatternStrings")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRegexPatternSetProps
static final class
An implementation forCfnRegexPatternSetProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A friendly name or description of theRegexPatternSet
.You can't change
Name
after you create aRegexPatternSet
.- See Also:
-
getRegexPatternStrings
Specifies the regular expression (regex) patterns that you want AWS WAF to search for, such asB[a@]dB[o0]t
.- See Also:
-
builder
- Returns:
- a
CfnRegexPatternSetProps.Builder
ofCfnRegexPatternSetProps
-