interface CfnSqlInjectionMatchSetProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFRegional.CfnSqlInjectionMatchSetProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswafregional#CfnSqlInjectionMatchSetProps |
Java | software.amazon.awscdk.services.waf.regional.CfnSqlInjectionMatchSetProps |
Python | aws_cdk.aws_wafregional.CfnSqlInjectionMatchSetProps |
TypeScript | aws-cdk-lib » 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 { aws_wafregional as wafregional } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript