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.
| 1401 1402 1403 1404 1405 1406 1407 | # File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1401 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.
| 1401 1402 1403 1404 1405 1406 1407 | # File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1401 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.
| 1401 1402 1403 1404 1405 1406 1407 | # File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1401 class DocumentCharLocation < Struct.new( :document_index, :start, :end) SENSITIVE = [] include Aws::Structure end |