Interface CfnOriginRequestPolicyPropsMixin.HeadersConfigProperty

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

@Stability(Stable) public static interface CfnOriginRequestPolicyPropsMixin.HeadersConfigProperty extends software.amazon.jsii.JsiiSerializable
An object that determines whether any HTTP headers (and if so, which headers) are included in requests that CloudFront sends to the origin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.cloudfront.*;
 HeadersConfigProperty headersConfigProperty = HeadersConfigProperty.builder()
         .headerBehavior("headerBehavior")
         .headers(List.of("headers"))
         .build();
 

See Also: