@Stability(value=Stable)
public static interface CfnChannel.AudioSelectorProperty
extends software.amazon.jsii.JsiiSerializable
The parent of this entity is InputSettings.
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.*;
AudioSelectorProperty audioSelectorProperty = AudioSelectorProperty.builder()
.name("name")
.selectorSettings(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())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnChannel.AudioSelectorProperty.Builder
A builder for
CfnChannel.AudioSelectorProperty |
static class |
CfnChannel.AudioSelectorProperty.Jsii$Proxy
An implementation for
CfnChannel.AudioSelectorProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnChannel.AudioSelectorProperty.Builder |
builder() |
default String |
getName()
A name for this AudioSelector.
|
default Object |
getSelectorSettings()
Information about the specific audio to extract from the input.
|
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getSelectorSettings()
@Stability(value=Stable) static CfnChannel.AudioSelectorProperty.Builder builder()
Copyright © 2022. All rights reserved.