Class: Aws::TranscribeService::Types::LanguageCodeItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeService::Types::LanguageCodeItem
- Includes:
- Structure
- Defined in:
- 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.
1870 1871 1872 1873 1874 1875 |
# File 'lib/aws-sdk-transcribeservice/types.rb', line 1870 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.
1870 1871 1872 1873 1874 1875 |
# File 'lib/aws-sdk-transcribeservice/types.rb', line 1870 class LanguageCodeItem < Struct.new( :language_code, :duration_in_seconds) SENSITIVE = [] include Aws::Structure end |