Interface CfnStreamingDistribution.LoggingProperty

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

@Stability(Stable) public static interface CfnStreamingDistribution.LoggingProperty extends software.amazon.jsii.JsiiSerializable
A complex type that controls whether access logs are written for the streaming 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")
         .enabled(false)
         .prefix("prefix")
         .build();
 

See Also: