Interface CfnDistribution.LoggingProperty

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

@Stability(Stable) public static interface CfnDistribution.LoggingProperty extends software.amazon.jsii.JsiiSerializable
A complex type that controls whether access logs are written for the 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.*;
 LoggingProperty loggingProperty = LoggingProperty.builder()
         .bucket("bucket")
         // the properties below are optional
         .includeCookies(false)
         .prefix("prefix")
         .build();
 

See Also: