Interface CfnWebACLPropsMixin.CustomHTTPHeaderProperty

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

@Stability(Stable) public static interface CfnWebACLPropsMixin.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.mixins.preview.services.wafv2.mixins.*;
 CustomHTTPHeaderProperty customHTTPHeaderProperty = CustomHTTPHeaderProperty.builder()
         .name("name")
         .value("value")
         .build();
 

See Also: