aws-cdk-lib.aws_medialive.CfnChannel.AudioSelectorProperty

interface AudioSelectorProperty

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

Information about one audio to extract from the input.

The parent of this entity is InputSettings.

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

Properties

NameTypeDescription
name?stringA name for this AudioSelector.
selectorSettings?IResolvable | AudioSelectorSettingsPropertyInformation about the specific audio to extract from the input.

name?

Type: string (optional)

A name for this AudioSelector.


selectorSettings?

Type: IResolvable | AudioSelectorSettingsProperty (optional)

Information about the specific audio to extract from the input.