aws-cdk-lib.aws_wafregional.CfnSqlInjectionMatchSetProps

interface CfnSqlInjectionMatchSetProps

LanguageType name
.NETAmazon.CDK.AWS.WAFRegional.CfnSqlInjectionMatchSetProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awswafregional#CfnSqlInjectionMatchSetProps
Javasoftware.amazon.awscdk.services.waf.regional.CfnSqlInjectionMatchSetProps
Pythonaws_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

NameTypeDescription
namestringThe name, if any, of the SqlInjectionMatchSet .
sqlInjectionMatchTuples?IResolvable | IResolvable | SqlInjectionMatchTupleProperty[]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 | SqlInjectionMatchTupleProperty[] (optional)

Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.