interface AudioTrackSelectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.AudioTrackSelectionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_AudioTrackSelectionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.AudioTrackSelectionProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.AudioTrackSelectionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » 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 { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
const audioTrackSelectionProperty: medialive.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