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

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

Instance Attribute Details

#duration_in_secondsFloat

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

Returns:

  • (Float)


1870
1871
1872
1873
1874
1875
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1870

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)


1870
1871
1872
1873
1874
1875
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1870

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