@Stability(value=Stable)
public static interface CfnChannel.AudioSelectorSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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 Object |
getAudioHlsRenditionSelection()
Selector for HLS audio rendition.
|
default Object |
getAudioLanguageSelection()
The language code of the audio to select.
|
default Object |
getAudioPidSelection()
The PID of the audio to select.
|
default Object |
getAudioTrackSelection()
Information about the audio track to extract.
|
@Stability(value=Stable) @Nullable default Object getAudioHlsRenditionSelection()
@Stability(value=Stable) @Nullable default Object getAudioLanguageSelection()
@Stability(value=Stable) @Nullable default Object getAudioPidSelection()
@Stability(value=Stable) @Nullable default Object getAudioTrackSelection()
@Stability(value=Stable) static CfnChannel.AudioSelectorSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.