Show / Hide Table of Contents

Class CfnChannelPropsMixin.TimecodeConfigProperty

The configuration of the timecode in the output.

Inheritance
object
CfnChannelPropsMixin.TimecodeConfigProperty
Implements
CfnChannelPropsMixin.ITimecodeConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnChannelPropsMixin.TimecodeConfigProperty : CfnChannelPropsMixin.ITimecodeConfigProperty
Syntax (vb)
Public Class CfnChannelPropsMixin.TimecodeConfigProperty Implements CfnChannelPropsMixin.ITimecodeConfigProperty
Remarks

The parent of this entity is EncoderSettings.

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

             var timecodeConfigProperty = new TimecodeConfigProperty {
                 Source = "source",
                 SyncThreshold = 123
             };

Synopsis

Constructors

TimecodeConfigProperty()

The configuration of the timecode in the output.

Properties

Source

Identifies the source for the timecode that will be associated with the channel outputs.

SyncThreshold

The threshold in frames beyond which output timecode is resynchronized to the input timecode.

Constructors

TimecodeConfigProperty()

The configuration of the timecode in the output.

public TimecodeConfigProperty()
Remarks

The parent of this entity is EncoderSettings.

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

             var timecodeConfigProperty = new TimecodeConfigProperty {
                 Source = "source",
                 SyncThreshold = 123
             };

Properties

Source

Identifies the source for the timecode that will be associated with the channel outputs.

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

string

Remarks

Embedded (embedded): Initialize the output timecode with timecode from the source. If no embedded timecode is detected in the source, the system falls back to using "Start at 0" (zerobased). System Clock (systemclock): Use the UTC time. Start at 0 (zerobased): The time of the first frame of the channel will be 00:00:00:00.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-timecodeconfig.html#cfn-medialive-channel-timecodeconfig-source

SyncThreshold

The threshold in frames beyond which output timecode is resynchronized to the input timecode.

public double? SyncThreshold { get; set; }
Property Value

double?

Remarks

Discrepancies below this threshold are permitted to avoid unnecessary discontinuities in the output timecode. There is no timecode sync when this is not specified.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-timecodeconfig.html#cfn-medialive-channel-timecodeconfig-syncthreshold

Implements

CfnChannelPropsMixin.ITimecodeConfigProperty
Back to top Generated by DocFX