Interface CfnChannelPropsMixin.AudioTrackSelectionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannelPropsMixin.AudioTrackSelectionProperty.Jsii$Proxy
Enclosing class:
CfnChannelPropsMixin

@Stability(Stable) public static interface CfnChannelPropsMixin.AudioTrackSelectionProperty extends software.amazon.jsii.JsiiSerializable
Information about the audio track to extract.

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.mixins.preview.services.medialive.mixins.*;
 AudioTrackSelectionProperty audioTrackSelectionProperty = AudioTrackSelectionProperty.builder()
         .dolbyEDecode(AudioDolbyEDecodeProperty.builder()
                 .programSelection("programSelection")
                 .build())
         .tracks(List.of(AudioTrackProperty.builder()
                 .track(123)
                 .build()))
         .build();
 

See Also: