Class: Aws::TranscribeStreamingService::Types::CallAnalyticsLanguageWithScore
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeStreamingService::Types::CallAnalyticsLanguageWithScore
- 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
-
#language_code ⇒ String
The language code of the identified language.
-
#score ⇒ Float
The confidence score associated with the identified language code.
Instance Attribute Details
#language_code ⇒ String
The language code of the identified language.
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 |
#score ⇒ Float
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.
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 |