interface AudioTrackSelectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.AudioTrackSelectionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_AudioTrackSelectionProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.AudioTrackSelectionProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.AudioTrackSelectionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » 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 { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const audioTrackSelectionProperty: medialive_mixins.CfnChannelPropsMixin.AudioTrackSelectionProperty = {
dolbyEDecode: {
programSelection: 'programSelection',
},
tracks: [{
track: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| dolby | IResolvable | Audio | |
| tracks? | IResolvable | (IResolvable | Audio)[] | Selects one or more unique audio tracks from within a source. |
dolbyEDecode?
Type:
IResolvable | Audio
(optional)
tracks?
Type:
IResolvable | (IResolvable | Audio)[]
(optional)
Selects one or more unique audio tracks from within a source.

.NET
Go
Java
Python
TypeScript