Class CfnWebACL.RegexProperty
A single regular expression.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWebACL.RegexProperty : CfnWebACL.IRegexProperty
Syntax (vb)
Public Class CfnWebACL.RegexProperty Implements CfnWebACL.IRegexProperty
Remarks
This is used in a RegexPatternSet and also in the configuration for the AWS Managed Rules rule group AWSManagedRulesAntiDDoSRuleSet .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-regex.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.WAFv2;
var regexProperty = new RegexProperty {
RegexString = "regexString"
};
Synopsis
Constructors
| RegexProperty() | A single regular expression. |
Properties
| RegexString | The string representing the regular expression. |
Constructors
RegexProperty()
A single regular expression.
public RegexProperty()
Remarks
This is used in a RegexPatternSet and also in the configuration for the AWS Managed Rules rule group AWSManagedRulesAntiDDoSRuleSet .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-regex.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.WAFv2;
var regexProperty = new RegexProperty {
RegexString = "regexString"
};
Properties
RegexString
The string representing the regular expression.
public string? RegexString { get; set; }