aws-cdk-lib.aws_medialive.CfnChannel.AudioSelectorSettingsProperty

interface AudioSelectorSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.AudioSelectorSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_AudioSelectorSettingsProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.AudioSelectorSettingsProperty
Pythonaws_cdk.aws_medialive.CfnChannel.AudioSelectorSettingsProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » AudioSelectorSettingsProperty

Information about the audio to extract from the input.

The parent of this entity is AudioSelector.

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-lib';
const audioSelectorSettingsProperty: medialive.CfnChannel.AudioSelectorSettingsProperty = {
  audioHlsRenditionSelection: {
    groupId: 'groupId',
    name: 'name',
  },
  audioLanguageSelection: {
    languageCode: 'languageCode',
    languageSelectionPolicy: 'languageSelectionPolicy',
  },
  audioPidSelection: {
    pid: 123,
  },
  audioTrackSelection: {
    dolbyEDecode: {
      programSelection: 'programSelection',
    },
    tracks: [{
      track: 123,
    }],
  },
};

Properties

NameTypeDescription
audioHlsRenditionSelection?IResolvable | AudioHlsRenditionSelectionPropertySelector for HLS audio rendition.
audioLanguageSelection?IResolvable | AudioLanguageSelectionPropertyThe language code of the audio to select.
audioPidSelection?IResolvable | AudioPidSelectionPropertyThe PID of the audio to select.
audioTrackSelection?IResolvable | AudioTrackSelectionPropertyInformation about the audio track to extract.

audioHlsRenditionSelection?

Type: IResolvable | AudioHlsRenditionSelectionProperty (optional)

Selector for HLS audio rendition.


audioLanguageSelection?

Type: IResolvable | AudioLanguageSelectionProperty (optional)

The language code of the audio to select.


audioPidSelection?

Type: IResolvable | AudioPidSelectionProperty (optional)

The PID of the audio to select.


audioTrackSelection?

Type: IResolvable | AudioTrackSelectionProperty (optional)

Information about the audio track to extract.