Class: Aws::TranscribeStreamingService::Types::CallAnalyticsLanguageWithScore

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb

Overview

The language code that represents the language identified in your audio, including the associated confidence score.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#language_codeString

The language code of the identified language.

Returns:

  • (String)


221
222
223
224
225
226
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 221

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

#scoreFloat

The confidence score associated with the identified language code. Confidence scores are values between zero and one; larger values indicate a higher confidence in the identified language.

Returns:

  • (Float)


221
222
223
224
225
226
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 221

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