Interface CfnChannel.AudioPidSelectionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.AudioPidSelectionProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.AudioPidSelectionProperty
extends software.amazon.jsii.JsiiSerializable
Used to extract audio by The PID.
The parent of this entity is AudioSelectorSettings.
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.*;
AudioPidSelectionProperty audioPidSelectionProperty = AudioPidSelectionProperty.builder()
.pid(123)
.pids(List.of(AudioPidProperty.builder()
.dolbyEDecode(AudioDolbyEDecodeProperty.builder()
.programSelection("programSelection")
.build())
.pid(123)
.premixSettings(AudioPreMixerSettingsProperty.builder()
.audioNormalizationSettings(AudioNormalizationSettingsProperty.builder()
.algorithm("algorithm")
.algorithmControl("algorithmControl")
.peakCalculation("peakCalculation")
.peakLimiterThreshold(123)
.targetLkfs(123)
.build())
.channels(123)
.gainDb(123)
.remixSettings(RemixSettingsProperty.builder()
.channelMappings(List.of(AudioChannelMappingProperty.builder()
.inputChannelLevels(List.of(InputChannelLevelProperty.builder()
.gain(123)
.inputChannel(123)
.build()))
.outputChannel(123)
.build()))
.channelsIn(123)
.channelsOut(123)
.build())
.build())
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannel.AudioPidSelectionPropertystatic final classAn implementation forCfnChannel.AudioPidSelectionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumbergetPid()Select the audio by this PID.default ObjectgetPids()Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnChannel.AudioPidProperty>Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPid
Select the audio by this PID.- See Also:
-
getPids
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnChannel.AudioPidProperty>- See Also:
-
builder
-