Class: Aws::BedrockRuntime::Types::DocumentCharLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::DocumentCharLocation
- Defined in:
- gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb
Overview
Specifies a character-level location within a document, providing precise positioning information for cited content using start and end character indices.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#document_index ⇒ Integer
The index of the document within the array of documents provided in the request.
-
#end ⇒ Integer
The ending character position of the cited content within the document.
-
#start ⇒ Integer
The starting character position of the cited content within the document.
Instance Attribute Details
#document_index ⇒ Integer
The index of the document within the array of documents provided in the request.
1269 1270 1271 1272 1273 1274 1275 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1269 class DocumentCharLocation < Struct.new( :document_index, :start, :end) SENSITIVE = [] include Aws::Structure end |
#end ⇒ Integer
The ending character position of the cited content within the document.
1269 1270 1271 1272 1273 1274 1275 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1269 class DocumentCharLocation < Struct.new( :document_index, :start, :end) SENSITIVE = [] include Aws::Structure end |
#start ⇒ Integer
The starting character position of the cited content within the document.
1269 1270 1271 1272 1273 1274 1275 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1269 class DocumentCharLocation < Struct.new( :document_index, :start, :end) SENSITIVE = [] include Aws::Structure end |