Class: Aws::MediaLive::Types::AudioSelectorSettings

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 AudioSelectorSettings data as a hash:

{
  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 Settings

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#audio_language_selectionTypes::AudioLanguageSelection

Audio Language Selection



1036
1037
1038
1039
1040
1041
1042
# File 'lib/aws-sdk-medialive/types.rb', line 1036

class AudioSelectorSettings < Struct.new(
  :audio_language_selection,
  :audio_pid_selection,
  :audio_track_selection)
  SENSITIVE = []
  include Aws::Structure
end

#audio_pid_selectionTypes::AudioPidSelection

Audio Pid Selection



1036
1037
1038
1039
1040
1041
1042
# File 'lib/aws-sdk-medialive/types.rb', line 1036

class AudioSelectorSettings < Struct.new(
  :audio_language_selection,
  :audio_pid_selection,
  :audio_track_selection)
  SENSITIVE = []
  include Aws::Structure
end

#audio_track_selectionTypes::AudioTrackSelection

Audio Track Selection



1036
1037
1038
1039
1040
1041
1042
# File 'lib/aws-sdk-medialive/types.rb', line 1036

class AudioSelectorSettings < Struct.new(
  :audio_language_selection,
  :audio_pid_selection,
  :audio_track_selection)
  SENSITIVE = []
  include Aws::Structure
end