interface AudioTrackSelectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.AudioTrackSelectionProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.AudioTrackSelectionProperty |
Python | aws_cdk.aws_medialive.CfnChannel.AudioTrackSelectionProperty |
TypeScript | @aws-cdk/aws-medialive » CfnChannel » AudioTrackSelectionProperty |
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 * as medialive from '@aws-cdk/aws-medialive';
const audioTrackSelectionProperty: medialive.CfnChannel.AudioTrackSelectionProperty = {
dolbyEDecode: {
programSelection: 'programSelection',
},
tracks: [{
track: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| dolby | IResolvable | Audio | CfnChannel.AudioTrackSelectionProperty.DolbyEDecode. |
| tracks? | IResolvable | IResolvable | Audio[] | Selects one or more unique audio tracks from within a source. |
dolbyEDecode?
Type:
IResolvable | Audio
(optional)
CfnChannel.AudioTrackSelectionProperty.DolbyEDecode.
tracks?
Type:
IResolvable | IResolvable | Audio[]
(optional)
Selects one or more unique audio tracks from within a source.

.NET
Java
Python
TypeScript