interface PreParseTextTransformationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFv2.CfnRuleGroup.PreParseTextTransformationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswafv2#CfnRuleGroup_PreParseTextTransformationProperty |
Java | software.amazon.awscdk.services.wafv2.CfnRuleGroup.PreParseTextTransformationProperty |
Python | aws_cdk.aws_wafv2.CfnRuleGroup.PreParseTextTransformationProperty |
TypeScript | aws-cdk-lib » aws_wafv2 » CfnRuleGroup » PreParseTextTransformationProperty |
Text Transformation applied before parsing the query string.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wafv2 as wafv2 } from 'aws-cdk-lib';
const preParseTextTransformationProperty: wafv2.CfnRuleGroup.PreParseTextTransformationProperty = {
priority: 123,
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| priority | number | Priority of PreParseTextTransformation being applied. |
| type | string | Type of pre-parse text transformation. |
priority
Type:
number
Priority of PreParseTextTransformation being applied.
type
Type:
string
Type of pre-parse text transformation.

.NET
Go
Java
Python
TypeScript