interface CfnRegexPatternSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WAFRegional.CfnRegexPatternSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswafregional#CfnRegexPatternSetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.wafregional.CfnRegexPatternSetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_wafregional.CfnRegexPatternSetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wafregional » CfnRegexPatternSetMixinProps |
Properties for CfnRegexPatternSetPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wafregional as wafregional } from '@aws-cdk/cfn-property-mixins';
const cfnRegexPatternSetMixinProps: wafregional.CfnRegexPatternSetMixinProps = {
name: 'name',
regexPatternStrings: ['regexPatternStrings'],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | A friendly name or description of the RegexPatternSet . |
| regex | string[] | Specifies the regular expression (regex) patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t . |
name?
Type:
string
(optional)
A friendly name or description of the RegexPatternSet .
You can't change Name after you create a RegexPatternSet .
regexPatternStrings?
Type:
string[]
(optional)
Specifies the regular expression (regex) patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t .

.NET
Go
Java
Python
TypeScript