Class: Aws::TranscribeStreamingService::Types::MedicalTranscriptEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeStreamingService::Types::MedicalTranscriptEvent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transcribestreamingservice/types.rb
Overview
The ‘MedicalTranscriptEvent` associated with a `MedicalTranscriptResultStream`.
Contains a set of transcription results from one or more audio segments, along with additional information per your request parameters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_type ⇒ Object
Returns the value of attribute event_type.
-
#transcript ⇒ Types::MedicalTranscript
Contains ‘Results`, which contains a set of transcription results from one or more audio segments, along with additional information per your request parameters.
Instance Attribute Details
#event_type ⇒ Object
Returns the value of attribute event_type
694 695 696 |
# File 'lib/aws-sdk-transcribestreamingservice/types.rb', line 694 def event_type @event_type end |
#transcript ⇒ Types::MedicalTranscript
Contains ‘Results`, which contains a set of transcription results from one or more audio segments, along with additional information per your request parameters. This can include information relating to alternative transcriptions, channel identification, partial result stabilization, language identification, and other transcription-related data.
694 695 696 697 698 699 |
# File 'lib/aws-sdk-transcribestreamingservice/types.rb', line 694 class MedicalTranscriptEvent < Struct.new( :transcript, :event_type) SENSITIVE = [] include Aws::Structure end |