Show / Hide Table of Contents

Interface ICfnSizeConstraintSetProps

Properties for defining a CfnSizeConstraintSet.

Namespace: Amazon.CDK.AWS.WAF
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnSizeConstraintSetProps
Syntax (vb)
Public Interface ICfnSizeConstraintSetProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.WAF;

             var cfnSizeConstraintSetProps = new CfnSizeConstraintSetProps {
                 Name = "name",
                 SizeConstraints = new [] { new SizeConstraintProperty {
                     ComparisonOperator = "comparisonOperator",
                     FieldToMatch = new FieldToMatchProperty {
                         Type = "type",

                         // the properties below are optional
                         Data = "data"
                     },
                     Size = 123,
                     TextTransformation = "textTransformation"
                 } }
             };

Synopsis

Properties

Name

The name, if any, of the SizeConstraintSet .

SizeConstraints

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

Properties

Name

The name, if any, of the SizeConstraintSet .

string Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name

SizeConstraints

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

object SizeConstraints { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-sizeconstraints

Back to top Generated by DocFX