Class: Aws::TranscribeStreamingService::Types::TimestampRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeStreamingService::Types::TimestampRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transcribestreamingservice/types.rb
Overview
Contains the timestamp range (start time through end time) of a matched category.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#begin_offset_millis ⇒ Integer
The time, in milliseconds, from the beginning of the audio stream to the start of the category match.
-
#end_offset_millis ⇒ Integer
The time, in milliseconds, from the beginning of the audio stream to the end of the category match.
Instance Attribute Details
#begin_offset_millis ⇒ Integer
The time, in milliseconds, from the beginning of the audio stream to the start of the category match.
1966 1967 1968 1969 1970 1971 |
# File 'lib/aws-sdk-transcribestreamingservice/types.rb', line 1966 class TimestampRange < Struct.new( :begin_offset_millis, :end_offset_millis) SENSITIVE = [] include Aws::Structure end |
#end_offset_millis ⇒ Integer
The time, in milliseconds, from the beginning of the audio stream to the end of the category match.
1966 1967 1968 1969 1970 1971 |
# File 'lib/aws-sdk-transcribestreamingservice/types.rb', line 1966 class TimestampRange < Struct.new( :begin_offset_millis, :end_offset_millis) SENSITIVE = [] include Aws::Structure end |