aws-cdk-lib.aws_waf.CfnSizeConstraintSetProps

interface CfnSizeConstraintSetProps

LanguageType name
.NETAmazon.CDK.AWS.WAF.CfnSizeConstraintSetProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awswaf#CfnSizeConstraintSetProps
Javasoftware.amazon.awscdk.services.waf.CfnSizeConstraintSetProps
Pythonaws_cdk.aws_waf.CfnSizeConstraintSetProps
TypeScript aws-cdk-lib » aws_waf » CfnSizeConstraintSetProps

Properties for defining a CfnSizeConstraintSet.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_waf as waf } from 'aws-cdk-lib';
const cfnSizeConstraintSetProps: waf.CfnSizeConstraintSetProps = {
  name: 'name',
  sizeConstraints: [{
    comparisonOperator: 'comparisonOperator',
    fieldToMatch: {
      type: 'type',

      // the properties below are optional
      data: 'data',
    },
    size: 123,
    textTransformation: 'textTransformation',
  }],
};

Properties

NameTypeDescription
namestringThe name, if any, of the SizeConstraintSet .
sizeConstraintsIResolvable | IResolvable | SizeConstraintProperty[]The size constraint and the part of the web request to check.

name

Type: string

The name, if any, of the SizeConstraintSet .


sizeConstraints

Type: IResolvable | IResolvable | SizeConstraintProperty[]

The size constraint and the part of the web request to check.