Class: Aws::TranscribeStreamingService::Types::CharacterOffsets

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#beginInteger

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.

Returns:

  • (Integer)


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

#endInteger

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.

Returns:

  • (Integer)


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