Class: Aws::TranscribeService::Types::LanguageCodeItem

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#duration_in_secondsFloat

Provides the total time, in seconds, each identified language is spoken in your media.

Returns:

  • (Float)


1752
1753
1754
1755
1756
1757
# File 'lib/aws-sdk-transcribeservice/types.rb', line 1752

class LanguageCodeItem < Struct.new(
  :language_code,
  :duration_in_seconds)
  SENSITIVE = []
  include Aws::Structure
end

#language_codeString

Provides the language code for each language identified in your media.

Returns:

  • (String)


1752
1753
1754
1755
1756
1757
# File 'lib/aws-sdk-transcribeservice/types.rb', line 1752

class LanguageCodeItem < Struct.new(
  :language_code,
  :duration_in_seconds)
  SENSITIVE = []
  include Aws::Structure
end