Interface CfnDistribution.OriginCustomHeaderProperty

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

@Stability(Stable) public static interface CfnDistribution.OriginCustomHeaderProperty extends software.amazon.jsii.JsiiSerializable
A complex type that contains HeaderName and HeaderValue elements, if any, for this distribution.

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.cloudfront.*;
 OriginCustomHeaderProperty originCustomHeaderProperty = OriginCustomHeaderProperty.builder()
         .headerName("headerName")
         .headerValue("headerValue")
         .build();