Class: Aws::DataZone::Types::MatchOffset
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::MatchOffset
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datazone/types.rb
Overview
The offset of a matched term.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_offset ⇒ Integer
The 0-indexed number indicating the end position (exclusive) of a matched term.
-
#start_offset ⇒ Integer
The 0-indexed number indicating the start position (inclusive) of a matched term.
Instance Attribute Details
#end_offset ⇒ Integer
The 0-indexed number indicating the end position (exclusive) of a matched term.
15670 15671 15672 15673 15674 15675 |
# File 'lib/aws-sdk-datazone/types.rb', line 15670 class MatchOffset < Struct.new( :start_offset, :end_offset) SENSITIVE = [] include Aws::Structure end |
#start_offset ⇒ Integer
The 0-indexed number indicating the start position (inclusive) of a matched term.
15670 15671 15672 15673 15674 15675 |
# File 'lib/aws-sdk-datazone/types.rb', line 15670 class MatchOffset < Struct.new( :start_offset, :end_offset) SENSITIVE = [] include Aws::Structure end |