Class: Aws::MediaLive::Types::CaptionLanguageMapping
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::MediaLive::Types::CaptionLanguageMapping
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-medialive/types.rb
 
Overview
Maps a caption channel to an ISO 693-2 language code (www.loc.gov/standards/iso639-2), with an optional description.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #caption_channel  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The closed caption channel being described by this CaptionLanguageMapping.
 - 
  
    
      #language_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Three character ISO 639-2 language code (see www.loc.gov/standards/iso639-2).
 - 
  
    
      #language_description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Textual description of language.
 
Instance Attribute Details
#caption_channel ⇒ Integer
The closed caption channel being described by this CaptionLanguageMapping. Each channel mapping must have a unique channel number (maximum of 4)
      1641 1642 1643 1644 1645 1646 1647  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 1641 class CaptionLanguageMapping < Struct.new( :caption_channel, :language_code, :language_description) SENSITIVE = [] include Aws::Structure end  | 
  
#language_code ⇒ String
Three character ISO 639-2 language code (see www.loc.gov/standards/iso639-2)
      1641 1642 1643 1644 1645 1646 1647  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 1641 class CaptionLanguageMapping < Struct.new( :caption_channel, :language_code, :language_description) SENSITIVE = [] include Aws::Structure end  | 
  
#language_description ⇒ String
Textual description of language
      1641 1642 1643 1644 1645 1646 1647  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 1641 class CaptionLanguageMapping < Struct.new( :caption_channel, :language_code, :language_description) SENSITIVE = [] include Aws::Structure end  |