public static interface CfnChannel.AudioSelectorSettingsProperty
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() .tracks(List.of(AudioTrackProperty.builder() .track(123) .build())) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnChannel.AudioSelectorSettingsProperty.Builder
A builder for
CfnChannel.AudioSelectorSettingsProperty |
static class |
CfnChannel.AudioSelectorSettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.AudioSelectorSettingsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnChannel.AudioSelectorSettingsProperty.Builder |
builder() |
default java.lang.Object |
getAudioHlsRenditionSelection()
Selector for HLS audio rendition.
|
default java.lang.Object |
getAudioLanguageSelection()
The language code of the audio to select.
|
default java.lang.Object |
getAudioPidSelection()
The PID of the audio to select.
|
default java.lang.Object |
getAudioTrackSelection()
Information about the audio track to extract.
|
default java.lang.Object getAudioHlsRenditionSelection()
default java.lang.Object getAudioLanguageSelection()
default java.lang.Object getAudioPidSelection()
default java.lang.Object getAudioTrackSelection()
static CfnChannel.AudioSelectorSettingsProperty.Builder builder()