Class CfnSizeConstraintSet
- All Implemented Interfaces:
IInspectable,ISizeConstraintSetRef,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
AWS WAF Classic support will end on September 30, 2025.
This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide.
For the latest version of AWS WAF , use the AWS WAF V2 API and see the AWS WAF Developer Guide . With the latest version, AWS WAF has a single set of endpoints for regional and global use.
A complex type that contains SizeConstraint objects, which specify the parts of web requests that you want AWS WAF to inspect the size of. If a SizeConstraintSet contains more than one SizeConstraint object, a request only needs to match one constraint to be considered a match.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.waf.regional.*;
CfnSizeConstraintSet cfnSizeConstraintSet = CfnSizeConstraintSet.Builder.create(this, "MyCfnSizeConstraintSet")
.name("name")
// the properties below are optional
.sizeConstraints(List.of(SizeConstraintProperty.builder()
.comparisonOperator("comparisonOperator")
.fieldToMatch(FieldToMatchProperty.builder()
.type("type")
// the properties below are optional
.data("data")
.build())
.size(123)
.textTransformation("textTransformation")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnSizeConstraintSet.static interfaceThe part of a web request that you want AWS WAF to inspect, such as a specific header or a query string.static interfaceNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.services.waf.regional.ISizeConstraintSetRef
ISizeConstraintSetRef.Jsii$Default, ISizeConstraintSetRef.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnSizeConstraintSet(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnSizeConstraintSet(software.amazon.jsii.JsiiObjectRef objRef) CfnSizeConstraintSet(software.constructs.Construct scope, String id, CfnSizeConstraintSetProps props) -
Method Summary
Modifier and TypeMethodDescriptiongetName()The name, if any, of theSizeConstraintSet.The size constraint and the part of the web request to check.A reference to a SizeConstraintSet resource.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidThe name, if any, of theSizeConstraintSet.voidsetSizeConstraints(List<Object> value) The size constraint and the part of the web request to check.voidsetSizeConstraints(IResolvable value) The size constraint and the part of the web request to check.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnSizeConstraintSet
protected CfnSizeConstraintSet(software.amazon.jsii.JsiiObjectRef objRef) -
CfnSizeConstraintSet
protected CfnSizeConstraintSet(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnSizeConstraintSet
@Stability(Stable) public CfnSizeConstraintSet(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnSizeConstraintSetProps props) - Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrId
-
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getSizeConstraintSetRef
A reference to a SizeConstraintSet resource.- Specified by:
getSizeConstraintSetRefin interfaceISizeConstraintSetRef
-
getName
The name, if any, of theSizeConstraintSet. -
setName
The name, if any, of theSizeConstraintSet. -
getSizeConstraints
The size constraint and the part of the web request to check.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnSizeConstraintSet.SizeConstraintProperty> -
setSizeConstraints
The size constraint and the part of the web request to check. -
setSizeConstraints
The size constraint and the part of the web request to check.
-