interface CfnSqlInjectionMatchSetProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFRegional.CfnSqlInjectionMatchSetProps |
Java | software.amazon.awscdk.services.waf.regional.CfnSqlInjectionMatchSetProps |
Python | aws_cdk.aws_wafregional.CfnSqlInjectionMatchSetProps |
TypeScript | @aws-cdk/aws-wafregional » CfnSqlInjectionMatchSetProps |
Properties for defining a CfnSqlInjectionMatchSet.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as wafregional from '@aws-cdk/aws-wafregional';
const cfnSqlInjectionMatchSetProps: wafregional.CfnSqlInjectionMatchSetProps = {
name: 'name',
// the properties below are optional
sqlInjectionMatchTuples: [{
fieldToMatch: {
type: 'type',
// the properties below are optional
data: 'data',
},
textTransformation: 'textTransformation',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name, if any, of the SqlInjectionMatchSet . |
| sql | IResolvable | IResolvable | Sql[] | Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code. |
name
Type:
string
The name, if any, of the SqlInjectionMatchSet .
sqlInjectionMatchTuples?
Type:
IResolvable | IResolvable | Sql[]
(optional)
Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.

.NET
Java
Python
TypeScript