Class: Aws::TranscribeService::Types::LanguageCodeItem
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::TranscribeService::Types::LanguageCodeItem
 
- Defined in:
- gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb
Overview
Provides information on the speech contained in a discreet utterance when multi-language identification is enabled in your request. This utterance represents a block of speech consisting of one language, preceded or followed by a block of speech in a different language.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #duration_in_seconds  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Provides the total time, in seconds, each identified language is spoken in your media. 
- 
  
    
      #language_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Provides the language code for each language identified in your media. 
Instance Attribute Details
#duration_in_seconds ⇒ Float
Provides the total time, in seconds, each identified language is spoken in your media.
| 1940 1941 1942 1943 1944 1945 | # File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1940 class LanguageCodeItem < Struct.new( :language_code, :duration_in_seconds) SENSITIVE = [] include Aws::Structure end | 
#language_code ⇒ String
Provides the language code for each language identified in your media.
| 1940 1941 1942 1943 1944 1945 | # File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1940 class LanguageCodeItem < Struct.new( :language_code, :duration_in_seconds) SENSITIVE = [] include Aws::Structure end |