Class: Aws::TranscribeStreamingService::Types::CharacterOffsets
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeStreamingService::Types::CharacterOffsets
- Defined in:
- gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb
Overview
Provides the location, using character count, in your transcript where a match is identified. For example, the location of an issue or a category match within a segment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#begin ⇒ Integer
Provides the character count of the first character where a match is identified.
-
#end ⇒ Integer
Provides the character count of the last character where a match is identified.
Instance Attribute Details
#begin ⇒ Integer
Provides the character count of the first character where a match is identified. For example, the first character associated with an issue or a category match in a segment transcript.
255 256 257 258 259 260 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 255 class CharacterOffsets < Struct.new( :begin, :end) SENSITIVE = [] include Aws::Structure end |
#end ⇒ Integer
Provides the character count of the last character where a match is identified. For example, the last character associated with an issue or a category match in a segment transcript.
255 256 257 258 259 260 |
# File 'gems/aws-sdk-transcribestreamingservice/lib/aws-sdk-transcribestreamingservice/types.rb', line 255 class CharacterOffsets < Struct.new( :begin, :end) SENSITIVE = [] include Aws::Structure end |