Class: Aws::BedrockAgent::Types::KnowledgeBaseDocument
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::KnowledgeBaseDocument
 
 
- Defined in:
 - gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
 
Overview
Contains information about a document to ingest into a knowledge base and metadata to associate with it.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ Types::DocumentContent 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains the content of the document.
 - 
  
    
      #metadata  ⇒ Types::DocumentMetadata 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains the metadata to associate with the document.
 
Instance Attribute Details
#content ⇒ Types::DocumentContent
Contains the content of the document.
      6098 6099 6100 6101 6102 6103  | 
    
      # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6098 class KnowledgeBaseDocument < Struct.new( :metadata, :content) SENSITIVE = [] include Aws::Structure end  | 
  
#metadata ⇒ Types::DocumentMetadata
Contains the metadata to associate with the document.
      6098 6099 6100 6101 6102 6103  | 
    
      # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6098 class KnowledgeBaseDocument < Struct.new( :metadata, :content) SENSITIVE = [] include Aws::Structure end  |