Interface CfnPlaybackConfiguration.LogConfigurationProperty

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

@Stability(Stable) public static interface CfnPlaybackConfiguration.LogConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Defines where AWS Elemental MediaTailor sends logs for the playback configuration.

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.mediatailor.*;
 LogConfigurationProperty logConfigurationProperty = LogConfigurationProperty.builder()
         .percentEnabled(123)
         // the properties below are optional
         .adsInteractionLog(AdsInteractionLogProperty.builder()
                 .excludeEventTypes(List.of("excludeEventTypes"))
                 .publishOptInEventTypes(List.of("publishOptInEventTypes"))
                 .build())
         .enabledLoggingStrategies(List.of("enabledLoggingStrategies"))
         .manifestServiceInteractionLog(ManifestServiceInteractionLogProperty.builder()
                 .excludeEventTypes(List.of("excludeEventTypes"))
                 .build())
         .build();
 

See Also: