interface CfnSizeConstraintSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFRegional.Mixins.CfnSizeConstraintSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafregional/mixins#CfnSizeConstraintSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.wafregional.mixins.CfnSizeConstraintSetMixinProps |
Python | aws_cdk.mixins_preview.aws_wafregional.mixins.CfnSizeConstraintSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_wafregional » mixins » CfnSizeConstraintSetMixinProps |
Properties for CfnSizeConstraintSetPropsMixin.
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 cfnSizeConstraintSetMixinProps: wafregional_mixins.CfnSizeConstraintSetMixinProps = {
name: 'name',
sizeConstraints: [{
comparisonOperator: 'comparisonOperator',
fieldToMatch: {
data: 'data',
type: 'type',
},
size: 123,
textTransformation: 'textTransformation',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name, if any, of the SizeConstraintSet . |
| size | IResolvable | (IResolvable | Size)[] | The size constraint and the part of the web request to check. |
name?
Type:
string
(optional)
The name, if any, of the SizeConstraintSet .
sizeConstraints?
Type:
IResolvable | (IResolvable | Size)[]
(optional)
The size constraint and the part of the web request to check.

.NET
Go
Java
Python
TypeScript