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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPlaybackConfiguration.AdsInteractionLogProperty
static final class
An implementation forCfnPlaybackConfiguration.AdsInteractionLogProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Indicates that MediaTailor won't emit the selected events in the logs for playback sessions that are initialized with this configuration.Indicates that MediaTailor emitsRAW_ADS_RESPONSE
logs for playback sessions that are initialized with this configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExcludeEventTypes
Indicates that MediaTailor won't emit the selected events in the logs for playback sessions that are initialized with this configuration.- See Also:
-
getPublishOptInEventTypes
Indicates that MediaTailor emitsRAW_ADS_RESPONSE
logs for playback sessions that are initialized with this configuration.- See Also:
-
builder
-