Interface CfnRuleGroup.BlockProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuleGroup.BlockProperty.Jsii$Proxy
- Enclosing class:
CfnRuleGroup
@Stability(Stable)
public static interface CfnRuleGroup.BlockProperty
extends software.amazon.jsii.JsiiSerializable
Block traffic towards application.
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.wafv2.*;
BlockProperty blockProperty = BlockProperty.builder()
.customResponse(CustomResponseProperty.builder()
.responseCode(123)
// the properties below are optional
.customResponseBodyKey("customResponseBodyKey")
.responseHeaders(List.of(CustomHTTPHeaderProperty.builder()
.name("name")
.value("value")
.build()))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRuleGroup.BlockPropertystatic final classAn implementation forCfnRuleGroup.BlockProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomResponse
Custom response.Returns union: either
IResolvableorCfnRuleGroup.CustomResponseProperty- See Also:
-
builder
- Returns:
- a
CfnRuleGroup.BlockProperty.BuilderofCfnRuleGroup.BlockProperty
-