Interface CfnResponseHeadersPolicy.ReferrerPolicyProperty

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

@Stability(Stable) public static interface CfnResponseHeadersPolicy.ReferrerPolicyProperty extends software.amazon.jsii.JsiiSerializable
Determines whether CloudFront includes the Referrer-Policy HTTP response header and the header's value.

For more information about the Referrer-Policy HTTP response header, see Referrer-Policy in the MDN Web Docs.

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.*;
 ReferrerPolicyProperty referrerPolicyProperty = ReferrerPolicyProperty.builder()
         .override(false)
         .referrerPolicy("referrerPolicy")
         .build();