Interface CfnListenerRule.HttpHeaderConfigProperty

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

@Stability(Stable) public static interface CfnListenerRule.HttpHeaderConfigProperty extends software.amazon.jsii.JsiiSerializable
Information about an HTTP header condition.

There is a set of standard HTTP header fields. You can also define custom HTTP header fields.

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.elasticloadbalancingv2.*;
 HttpHeaderConfigProperty httpHeaderConfigProperty = HttpHeaderConfigProperty.builder()
         .httpHeaderName("httpHeaderName")
         .values(List.of("values"))
         .build();
 

See Also: