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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-medialive/types.rb

Overview

Note:

When making an API call, you may pass AudioSelector data as a hash:

{
  name: "__stringMin1", # required
  selector_settings: {
    audio_hls_rendition_selection: {
      group_id: "__stringMin1", # required
      name: "__stringMin1", # required
    },
    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

Constant Summary collapse

SENSITIVE =
[]

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)


1046
1047
1048
1049
1050
1051
# File 'lib/aws-sdk-medialive/types.rb', line 1046

class AudioSelector < Struct.new(
  :name,
  :selector_settings)
  SENSITIVE = []
  include Aws::Structure
end

#selector_settingsTypes::AudioSelectorSettings

The audio selector settings.



1046
1047
1048
1049
1050
1051
# File 'lib/aws-sdk-medialive/types.rb', line 1046

class AudioSelector < Struct.new(
  :name,
  :selector_settings)
  SENSITIVE = []
  include Aws::Structure
end