Show / Hide Table of Contents

Class CfnPlaybackConfiguration.AvailSuppressionProperty

The configuration for avail suppression, also known as ad suppression.

Inheritance
object
CfnPlaybackConfiguration.AvailSuppressionProperty
Implements
CfnPlaybackConfiguration.IAvailSuppressionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.MediaTailor
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPlaybackConfiguration.AvailSuppressionProperty : CfnPlaybackConfiguration.IAvailSuppressionProperty
Syntax (vb)
Public Class CfnPlaybackConfiguration.AvailSuppressionProperty Implements CfnPlaybackConfiguration.IAvailSuppressionProperty
Remarks

For more information about ad suppression, see Ad Suppression .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-availsuppression.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.AWS.MediaTailor;

             var availSuppressionProperty = new AvailSuppressionProperty {
                 FillPolicy = "fillPolicy",
                 Mode = "mode",
                 Value = "value"
             };

Synopsis

Constructors

AvailSuppressionProperty()

The configuration for avail suppression, also known as ad suppression.

Properties

FillPolicy

Defines the policy to apply to the avail suppression mode.

Mode

Sets the ad suppression mode.

Value

A live edge offset time in HH:MM:SS.

Constructors

AvailSuppressionProperty()

The configuration for avail suppression, also known as ad suppression.

public AvailSuppressionProperty()
Remarks

For more information about ad suppression, see Ad Suppression .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-availsuppression.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.AWS.MediaTailor;

             var availSuppressionProperty = new AvailSuppressionProperty {
                 FillPolicy = "fillPolicy",
                 Mode = "mode",
                 Value = "value"
             };

Properties

FillPolicy

Defines the policy to apply to the avail suppression mode.

public string? FillPolicy { get; set; }
Property Value

string

Remarks

BEHIND_LIVE_EDGE will always use the full avail suppression policy. AFTER_LIVE_EDGE mode can be used to invoke partial ad break fills when a session starts mid-break.

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

Mode

Sets the ad suppression mode.

public string? Mode { get; set; }
Property Value

string

Remarks

By default, ad suppression is off and all ad breaks are filled with ads or slate. When Mode is set to BEHIND_LIVE_EDGE , ad suppression is active and MediaTailor won't fill ad breaks on or behind the ad suppression Value time in the manifest lookback window. When Mode is set to AFTER_LIVE_EDGE , ad suppression is active and MediaTailor won't fill ad breaks that are within the live edge plus the avail suppression value.

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

Value

A live edge offset time in HH:MM:SS.

public string? Value { get; set; }
Property Value

string

Remarks

MediaTailor won't fill ad breaks on or behind this time in the manifest lookback window. If Value is set to 00:00:00, it is in sync with the live edge, and MediaTailor won't fill any ad breaks on or behind the live edge. If you set a Value time, MediaTailor won't fill any ad breaks on or behind this time in the manifest lookback window. For example, if you set 00:45:00, then MediaTailor will fill ad breaks that occur within 45 minutes behind the live edge, but won't fill ad breaks on or behind 45 minutes behind the live edge.

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

Implements

CfnPlaybackConfiguration.IAvailSuppressionProperty
Back to top Generated by DocFX