Interface CfnRegexPatternSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRegexPatternSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:36.101Z")
@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();
-
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
. -
getRegexPatternStrings
Specifies the regular expression (regex) patterns that you want AWS WAF to search for, such asB[a@]dB[o0]t
. -
builder
- Returns:
- a
CfnRegexPatternSetProps.Builder
ofCfnRegexPatternSetProps
-