interface CfnRegexPatternSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFRegional.Mixins.CfnRegexPatternSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafregional/mixins#CfnRegexPatternSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.wafregional.mixins.CfnRegexPatternSetMixinProps |
Python | aws_cdk.mixins_preview.aws_wafregional.mixins.CfnRegexPatternSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_wafregional » mixins » 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 { mixins as wafregional_mixins } from '@aws-cdk/mixins-preview/aws-wafregional';
const cfnRegexPatternSetMixinProps: wafregional_mixins.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