interface PreParseTextTransformationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WAFv2.CfnWebACLPropsMixin.PreParseTextTransformationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswafv2#CfnWebACLPropsMixin_PreParseTextTransformationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wafv2.CfnWebACLPropsMixin.PreParseTextTransformationProperty |
Python | aws_cdk.cfn_property_mixins.aws_wafv2.CfnWebACLPropsMixin.PreParseTextTransformationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wafv2 » CfnWebACLPropsMixin » 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/cfn-property-mixins';
const preParseTextTransformationProperty: wafv2.CfnWebACLPropsMixin.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
(optional)
Priority of PreParseTextTransformation being applied.
type?
Type:
string
(optional)
Type of pre-parse text transformation.

.NET
Go
Java
Python
TypeScript