interface CfnSqlInjectionMatchSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFRegional.Mixins.CfnSqlInjectionMatchSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafregional/mixins#CfnSqlInjectionMatchSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.wafregional.mixins.CfnSqlInjectionMatchSetMixinProps |
Python | aws_cdk.mixins_preview.aws_wafregional.mixins.CfnSqlInjectionMatchSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_wafregional » mixins » 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 { mixins as wafregional_mixins } from '@aws-cdk/mixins-preview/aws-wafregional';
const cfnSqlInjectionMatchSetMixinProps: wafregional_mixins.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