Interface CfnWebACL.CustomHTTPHeaderProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWebACL.CustomHTTPHeaderProperty.Jsii$Proxy
Enclosing class:
CfnWebACL

@Stability(Stable) public static interface CfnWebACL.CustomHTTPHeaderProperty extends software.amazon.jsii.JsiiSerializable
A custom header for custom request and response handling.

This is used in CustomResponse and CustomRequestHandling .

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.*;
 CustomHTTPHeaderProperty customHTTPHeaderProperty = CustomHTTPHeaderProperty.builder()
         .name("name")
         .value("value")
         .build();
 
  • Method Details