Class: Aws::BedrockRuntime::Types::DocumentPageLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::DocumentPageLocation
- Defined in:
- gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb
Overview
Specifies a page-level location within a document, providing positioning information for cited content using page numbers.
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 page number of the cited content within the document.
-
#start ⇒ Integer
The starting page number 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.
1348 1349 1350 1351 1352 1353 1354 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1348 class DocumentPageLocation < Struct.new( :document_index, :start, :end) SENSITIVE = [] include Aws::Structure end |
#end ⇒ Integer
The ending page number of the cited content within the document.
1348 1349 1350 1351 1352 1353 1354 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1348 class DocumentPageLocation < Struct.new( :document_index, :start, :end) SENSITIVE = [] include Aws::Structure end |
#start ⇒ Integer
The starting page number of the cited content within the document.
1348 1349 1350 1351 1352 1353 1354 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1348 class DocumentPageLocation < Struct.new( :document_index, :start, :end) SENSITIVE = [] include Aws::Structure end |