Show / Hide Table of Contents

Class CfnChannel.AudioSelectorProperty

Information about one audio to extract from the input.

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

The parent of this entity is InputSettings.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-audioselector.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 audioSelectorProperty = new AudioSelectorProperty {
    Name = "name",
    SelectorSettings = new AudioSelectorSettingsProperty {
        AudioHlsRenditionSelection = new AudioHlsRenditionSelectionProperty {
            GroupId = "groupId",
            Name = "name"
        },
        AudioLanguageSelection = new AudioLanguageSelectionProperty {
            LanguageCode = "languageCode",
            LanguageSelectionPolicy = "languageSelectionPolicy"
        },
        AudioPidSelection = new AudioPidSelectionProperty {
            Pid = 123
        },
        AudioTrackSelection = new AudioTrackSelectionProperty {
            DolbyEDecode = new AudioDolbyEDecodeProperty {
                ProgramSelection = "programSelection"
            },
            Tracks = new [] { new AudioTrackProperty {
                Track = 123
            } }
        }
    }
};

Synopsis

Constructors

AudioSelectorProperty()

Properties

Name

A name for this AudioSelector.

SelectorSettings

Information about the specific audio to extract from the input.

Constructors

AudioSelectorProperty()

public AudioSelectorProperty()

Properties

Name

A name for this AudioSelector.

public string Name { get; set; }
Property Value

System.String

Remarks

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

SelectorSettings

Information about the specific audio to extract from the input.

public object SelectorSettings { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnChannel.IAudioSelectorProperty
Back to top Generated by DocFX