Show / Hide Table of Contents

Interface CfnPlaybackConfigurationPropsMixin.ILogConfigurationProperty

Defines where AWS Elemental MediaTailor sends logs for the playback configuration.

Namespace: Amazon.CDK.Mixins.Preview.AWS.MediaTailor.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnPlaybackConfigurationPropsMixin.ILogConfigurationProperty
Syntax (vb)
Public Interface CfnPlaybackConfigurationPropsMixin.ILogConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-logconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.MediaTailor.Mixins;

             var logConfigurationProperty = new LogConfigurationProperty {
                 AdsInteractionLog = new AdsInteractionLogProperty {
                     ExcludeEventTypes = new [] { "excludeEventTypes" },
                     PublishOptInEventTypes = new [] { "publishOptInEventTypes" }
                 },
                 EnabledLoggingStrategies = new [] { "enabledLoggingStrategies" },
                 ManifestServiceInteractionLog = new ManifestServiceInteractionLogProperty {
                     ExcludeEventTypes = new [] { "excludeEventTypes" }
                 },
                 PercentEnabled = 123
             };

Synopsis

Properties

AdsInteractionLog

Settings for customizing what events are included in logs for interactions with the ad decision server (ADS).

EnabledLoggingStrategies

The method used for collecting logs from AWS Elemental MediaTailor.

ManifestServiceInteractionLog

Settings for customizing what events are included in logs for interactions with the origin server.

PercentEnabled

The percentage of session logs that MediaTailor sends to your configured log destination.

Properties

AdsInteractionLog

Settings for customizing what events are included in logs for interactions with the ad decision server (ADS).

object? AdsInteractionLog { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-logconfiguration.html#cfn-mediatailor-playbackconfiguration-logconfiguration-adsinteractionlog

Type union: either IResolvable or CfnPlaybackConfigurationPropsMixin.IAdsInteractionLogProperty

EnabledLoggingStrategies

The method used for collecting logs from AWS Elemental MediaTailor.

string[]? EnabledLoggingStrategies { get; }
Property Value

string[]

Remarks

LEGACY_CLOUDWATCH indicates that MediaTailor is sending logs directly to Amazon CloudWatch Logs. VENDED_LOGS indicates that MediaTailor is sending logs to CloudWatch, which then vends the logs to your destination of choice. Supported destinations are CloudWatch Logs log group, Amazon S3 bucket, and Amazon Data Firehose stream.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-logconfiguration.html#cfn-mediatailor-playbackconfiguration-logconfiguration-enabledloggingstrategies

ManifestServiceInteractionLog

Settings for customizing what events are included in logs for interactions with the origin server.

object? ManifestServiceInteractionLog { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-logconfiguration.html#cfn-mediatailor-playbackconfiguration-logconfiguration-manifestserviceinteractionlog

Type union: either IResolvable or CfnPlaybackConfigurationPropsMixin.IManifestServiceInteractionLogProperty

PercentEnabled

The percentage of session logs that MediaTailor sends to your configured log destination.

double? PercentEnabled { get; }
Property Value

double?

Remarks

For example, if your playback configuration has 1000 sessions and percentEnabled is set to 60 , MediaTailor sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides at random which of the playback configuration sessions to send logs for. If you want to view logs for a specific session, you can use the debug log mode .

Valid values: 0 - 100

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-logconfiguration.html#cfn-mediatailor-playbackconfiguration-logconfiguration-percentenabled

Back to top Generated by DocFX