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.
1453 1454 1455 1456 1457 1458 1459 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1453 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.
1453 1454 1455 1456 1457 1458 1459 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1453 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.
1453 1454 1455 1456 1457 1458 1459 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1453 class DocumentPageLocation < Struct.new( :document_index, :start, :end) SENSITIVE = [] include Aws::Structure end |