Interface CfnPlaybackConfiguration.AdsInteractionLogProperty

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

@Stability(Stable) public static interface CfnPlaybackConfiguration.AdsInteractionLogProperty extends software.amazon.jsii.JsiiSerializable
Settings for customizing what events are included in logs for interactions with the ad decision server (ADS).

For more information about ADS logs, inlcuding descriptions of the event types, see MediaTailor ADS logs description and event types in AWS Elemental MediaTailor User Guide.

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.*;
 AdsInteractionLogProperty adsInteractionLogProperty = AdsInteractionLogProperty.builder()
         .excludeEventTypes(List.of("excludeEventTypes"))
         .publishOptInEventTypes(List.of("publishOptInEventTypes"))
         .build();
 

See Also: