Interface CfnResponseHeadersPolicy.ServerTimingHeadersConfigProperty

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

@Stability(Stable) public static interface CfnResponseHeadersPolicy.ServerTimingHeadersConfigProperty extends software.amazon.jsii.JsiiSerializable
A configuration for enabling the Server-Timing header in HTTP responses sent from CloudFront.

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.*;
 ServerTimingHeadersConfigProperty serverTimingHeadersConfigProperty = ServerTimingHeadersConfigProperty.builder()
         .enabled(false)
         // the properties below are optional
         .samplingRate(123)
         .build();
 

See Also: