CfnRegexPatternSetMixinProps
- class aws_cdk.mixins_preview.aws_wafregional.mixins.CfnRegexPatternSetMixinProps(*, name=None, regex_pattern_strings=None)
Bases:
objectProperties for CfnRegexPatternSetPropsMixin.
- Parameters:
name (
Optional[str]) – A friendly name or description of theRegexPatternSet. You can’t changeNameafter you create aRegexPatternSet.regex_pattern_strings (
Optional[Sequence[str]]) – Specifies the regular expression (regex) patterns that you want AWS WAF to search for, such asB[a@]dB[o0]t.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_wafregional import mixins as wafregional_mixins cfn_regex_pattern_set_mixin_props = wafregional_mixins.CfnRegexPatternSetMixinProps( name="name", regex_pattern_strings=["regexPatternStrings"] )
Attributes
- name
A friendly name or description of the
RegexPatternSet.You can’t change
Nameafter you create aRegexPatternSet.
- regex_pattern_strings
Specifies the regular expression (regex) patterns that you want AWS WAF to search for, such as
B[a@]dB[o0]t.