Class CfnRuleGroup.TextTransformationProperty
Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRuleGroup.TextTransformationProperty : CfnRuleGroup.ITextTransformationProperty
Syntax (vb)
Public Class CfnRuleGroup.TextTransformationProperty Implements CfnRuleGroup.ITextTransformationProperty
Remarks
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 textTransformationProperty = new TextTransformationProperty {
Priority = 123,
Type = "type"
};
Synopsis
Constructors
| TextTransformationProperty() | Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. |
Properties
| Priority | Sets the relative processing order for multiple transformations. |
| Type | For detailed descriptions of each of the transformation types, see Text transformations in the AWS WAF Developer Guide . |
Constructors
TextTransformationProperty()
Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.
public TextTransformationProperty()
Remarks
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 textTransformationProperty = new TextTransformationProperty {
Priority = 123,
Type = "type"
};
Properties
Priority
Sets the relative processing order for multiple transformations.
public double Priority { get; set; }
Property Value
Remarks
AWS WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content. The priorities don't need to be consecutive, but they must all be different.
Type
For detailed descriptions of each of the transformation types, see Text transformations in the AWS WAF Developer Guide .
public string Type { get; set; }