@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.667Z") @Stability(value=Stable) public interface CfnSizeConstraintSetProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnSizeConstraintSetProps cfnSizeConstraintSetProps = CfnSizeConstraintSetProps.builder()
.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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSizeConstraintSetProps.Builder
A builder for
CfnSizeConstraintSetProps |
static class |
CfnSizeConstraintSetProps.Jsii$Proxy
An implementation for
CfnSizeConstraintSetProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnSizeConstraintSetProps.Builder |
builder() |
String |
getName()
The name, if any, of the `SizeConstraintSet` .
|
default Object |
getSizeConstraints()
The size constraint and the part of the web request to check.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default Object getSizeConstraints()
@Stability(value=Stable) static CfnSizeConstraintSetProps.Builder builder()
CfnSizeConstraintSetProps.Builder of CfnSizeConstraintSetPropsCopyright © 2022. All rights reserved.