interface CfnSqlInjectionMatchSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WAFRegional.CfnSqlInjectionMatchSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswafregional#CfnSqlInjectionMatchSetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.wafregional.CfnSqlInjectionMatchSetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_wafregional.CfnSqlInjectionMatchSetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wafregional » CfnSqlInjectionMatchSetMixinProps |
Properties for CfnSqlInjectionMatchSetPropsMixin.
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/cfn-property-mixins';
const cfnSqlInjectionMatchSetMixinProps: wafregional.CfnSqlInjectionMatchSetMixinProps = {
name: 'name',
sqlInjectionMatchTuples: [{
fieldToMatch: {
data: 'data',
type: 'type',
},
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
(optional)
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