Class: Aws::TranscribeStreamingService::Types::CategoryEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeStreamingService::Types::CategoryEvent
- Defined in:
- gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb
Overview
Provides information on any TranscriptFilterType
categories that
matched your transcription output. Matches are identified for each
segment upon completion of that segment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_type ⇒ Object
Returns the value of attribute event_type.
-
#matched_categories ⇒ Array<String>
Lists the categories that were matched in your audio segment.
-
#matched_details ⇒ Hash<String,Types::PointsOfInterest>
Contains information about the matched categories, including category names and timestamps.
Instance Attribute Details
#event_type ⇒ Object
Returns the value of attribute event_type
205 206 207 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 205 def event_type @event_type end |
#matched_categories ⇒ Array<String>
Lists the categories that were matched in your audio segment.
205 206 207 208 209 210 211 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 205 class CategoryEvent < Struct.new( :matched_categories, :matched_details, :event_type) SENSITIVE = [] include Aws::Structure end |
#matched_details ⇒ Hash<String,Types::PointsOfInterest>
Contains information about the matched categories, including category names and timestamps.
205 206 207 208 209 210 211 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 205 class CategoryEvent < Struct.new( :matched_categories, :matched_details, :event_type) SENSITIVE = [] include Aws::Structure end |