Interface CfnChannel.AudioSelectorSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.AudioSelectorSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.AudioSelectorSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Information about the audio to extract from the input.
The parent of this entity is AudioSelector.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.medialive.*; AudioSelectorSettingsProperty audioSelectorSettingsProperty = AudioSelectorSettingsProperty.builder() .audioHlsRenditionSelection(AudioHlsRenditionSelectionProperty.builder() .groupId("groupId") .name("name") .build()) .audioLanguageSelection(AudioLanguageSelectionProperty.builder() .languageCode("languageCode") .languageSelectionPolicy("languageSelectionPolicy") .build()) .audioPidSelection(AudioPidSelectionProperty.builder() .pid(123) .build()) .audioTrackSelection(AudioTrackSelectionProperty.builder() .dolbyEDecode(AudioDolbyEDecodeProperty.builder() .programSelection("programSelection") .build()) .tracks(List.of(AudioTrackProperty.builder() .track(123) .build())) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.AudioSelectorSettingsProperty
static final class
An implementation forCfnChannel.AudioSelectorSettingsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAudioHlsRenditionSelection
Selector for HLS audio rendition.- See Also:
-
getAudioLanguageSelection
The language code of the audio to select.- See Also:
-
getAudioPidSelection
The PID of the audio to select.- See Also:
-
getAudioTrackSelection
Information about the audio track to extract.- See Also:
-
builder
-