You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MediaLive::Types::AudioSelector

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AudioSelector as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "__stringMin1", # required
  selector_settings: {
    audio_language_selection: {
      language_code: "__string", # required
      language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
    },
    audio_pid_selection: {
      pid: 1, # required
    },
    audio_track_selection: {
      tracks: [ # required
        {
          track: 1, # required
        },
      ],
    },
  },
}

Audio Selector

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of this AudioSelector. AudioDescriptions will use this name to uniquely identify this Selector. Selector names should be unique per input.

Returns:

  • (String)

    The name of this AudioSelector.

#selector_settingsTypes::AudioSelectorSettings

The audio selector settings.

Returns: