Show / Hide Table of Contents

Class CfnChannel.UdpGroupSettingsProperty

The configuration of a UDP output group.

Inheritance
System.Object
CfnChannel.UdpGroupSettingsProperty
Implements
CfnChannel.IUdpGroupSettingsProperty
Namespace: Amazon.CDK.AWS.MediaLive
Assembly: Amazon.CDK.AWS.MediaLive.dll
Syntax (csharp)
public class UdpGroupSettingsProperty : Object, CfnChannel.IUdpGroupSettingsProperty
Syntax (vb)
Public Class UdpGroupSettingsProperty
    Inherits Object
    Implements CfnChannel.IUdpGroupSettingsProperty
Remarks

The parent of this entity is OutputGroupSettings.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-udpgroupsettings.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.MediaLive;

var udpGroupSettingsProperty = new UdpGroupSettingsProperty {
    InputLossAction = "inputLossAction",
    TimedMetadataId3Frame = "timedMetadataId3Frame",
    TimedMetadataId3Period = 123
};

Synopsis

Constructors

UdpGroupSettingsProperty()

Properties

InputLossAction

Specifies the behavior of the last resort when the input video is lost, and no more backup inputs are available.

TimedMetadataId3Frame

Indicates the ID3 frame that has the timecode.

TimedMetadataId3Period

The timed metadata interval in seconds.

Constructors

UdpGroupSettingsProperty()

public UdpGroupSettingsProperty()

Properties

InputLossAction

Specifies the behavior of the last resort when the input video is lost, and no more backup inputs are available.

public string InputLossAction { get; set; }
Property Value

System.String

Remarks

When dropTs is selected, the entire transport stream stops emitting. When dropProgram is selected, the program can be dropped from the transport stream (and replaced with null packets to meet the TS bitrate requirement). Or when emitProgram is selected, the transport stream continues to be produced normally with repeat frames, black frames, or slate frames substituted for the absent input video.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-udpgroupsettings.html#cfn-medialive-channel-udpgroupsettings-inputlossaction

TimedMetadataId3Frame

Indicates the ID3 frame that has the timecode.

public string TimedMetadataId3Frame { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-udpgroupsettings.html#cfn-medialive-channel-udpgroupsettings-timedmetadataid3frame

TimedMetadataId3Period

The timed metadata interval in seconds.

public Nullable<double> TimedMetadataId3Period { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-udpgroupsettings.html#cfn-medialive-channel-udpgroupsettings-timedmetadataid3period

Implements

CfnChannel.IUdpGroupSettingsProperty
Back to top Generated by DocFX