Class: Aws::TranscribeStreamingService::Types::MedicalItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeStreamingService::Types::MedicalItem
- Defined in:
- gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb
Overview
A word, phrase, or punctuation mark in your transcription output, along with various associated attributes, such as confidence score, type, and start and end times.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#confidence ⇒ Float
The confidence score associated with a word or phrase in your transcript.
-
#content ⇒ String
The word or punctuation that was transcribed.
-
#end_time ⇒ Float
The end time, in milliseconds, of the transcribed item.
-
#speaker ⇒ String
If speaker partitioning is enabled,
Speaker
labels the speaker of the specified item. -
#start_time ⇒ Float
The start time, in milliseconds, of the transcribed item.
-
#type ⇒ String
The type of item identified.
Instance Attribute Details
#confidence ⇒ Float
The confidence score associated with a word or phrase in your transcript.
Confidence scores are values between 0 and 1. A larger value indicates a higher probability that the identified item correctly matches the item spoken in your media.
600 601 602 603 604 605 606 607 608 609 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 600 class MedicalItem < Struct.new( :start_time, :end_time, :type, :content, :confidence, :speaker) SENSITIVE = [] include Aws::Structure end |
#content ⇒ String
The word or punctuation that was transcribed.
600 601 602 603 604 605 606 607 608 609 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 600 class MedicalItem < Struct.new( :start_time, :end_time, :type, :content, :confidence, :speaker) SENSITIVE = [] include Aws::Structure end |
#end_time ⇒ Float
The end time, in milliseconds, of the transcribed item.
600 601 602 603 604 605 606 607 608 609 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 600 class MedicalItem < Struct.new( :start_time, :end_time, :type, :content, :confidence, :speaker) SENSITIVE = [] include Aws::Structure end |
#speaker ⇒ String
If speaker partitioning is enabled, Speaker
labels the speaker of
the specified item.
600 601 602 603 604 605 606 607 608 609 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 600 class MedicalItem < Struct.new( :start_time, :end_time, :type, :content, :confidence, :speaker) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Float
The start time, in milliseconds, of the transcribed item.
600 601 602 603 604 605 606 607 608 609 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 600 class MedicalItem < Struct.new( :start_time, :end_time, :type, :content, :confidence, :speaker) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of item identified. Options are: PRONUNCIATION
(spoken
words) and PUNCTUATION
.
600 601 602 603 604 605 606 607 608 609 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 600 class MedicalItem < Struct.new( :start_time, :end_time, :type, :content, :confidence, :speaker) SENSITIVE = [] include Aws::Structure end |