Class: Aws::DataZone::Types::MatchOffset

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb

Overview

The offset of a matched term.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_offsetInteger

The 0-indexed number indicating the end position (exclusive) of a matched term.

Returns:

  • (Integer)


13923
13924
13925
13926
13927
13928
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13923

class MatchOffset < Struct.new(
  :end_offset,
  :start_offset)
  SENSITIVE = []
  include Aws::Structure
end

#start_offsetInteger

The 0-indexed number indicating the start position (inclusive) of a matched term.

Returns:

  • (Integer)


13923
13924
13925
13926
13927
13928
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13923

class MatchOffset < Struct.new(
  :end_offset,
  :start_offset)
  SENSITIVE = []
  include Aws::Structure
end