Class: Aws::TranscribeStreamingService::Types::TranscriptEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeStreamingService::Types::TranscriptEvent
- Defined in:
- gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb
Overview
The TranscriptEvent
associated with a TranscriptResultStream
.
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::Transcript
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
3010 3011 3012 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 3010 def event_type @event_type end |
#transcript ⇒ Types::Transcript
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.
3010 3011 3012 3013 3014 3015 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 3010 class TranscriptEvent < Struct.new( :transcript, :event_type) SENSITIVE = [] include Aws::Structure end |