Class: Aws::BedrockAgent::Types::VectorIngestionConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::VectorIngestionConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-bedrockagent/types.rb
 
Overview
Contains details about how to ingest the documents in a data source.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #chunking_configuration  ⇒ Types::ChunkingConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Details about how to chunk the documents in the data source.
 - 
  
    
      #custom_transformation_configuration  ⇒ Types::CustomTransformationConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A custom document transformer for parsed data source documents.
 - 
  
    
      #parsing_configuration  ⇒ Types::ParsingConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A custom parser for data source documents.
 
Instance Attribute Details
#chunking_configuration ⇒ Types::ChunkingConfiguration
Details about how to chunk the documents in the data source. A chunk refers to an excerpt from a data source that is returned when the knowledge base that it belongs to is queried.
      7875 7876 7877 7878 7879 7880 7881  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 7875 class VectorIngestionConfiguration < Struct.new( :chunking_configuration, :custom_transformation_configuration, :parsing_configuration) SENSITIVE = [] include Aws::Structure end  | 
  
#custom_transformation_configuration ⇒ Types::CustomTransformationConfiguration
A custom document transformer for parsed data source documents.
      7875 7876 7877 7878 7879 7880 7881  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 7875 class VectorIngestionConfiguration < Struct.new( :chunking_configuration, :custom_transformation_configuration, :parsing_configuration) SENSITIVE = [] include Aws::Structure end  | 
  
#parsing_configuration ⇒ Types::ParsingConfiguration
A custom parser for data source documents.
      7875 7876 7877 7878 7879 7880 7881  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 7875 class VectorIngestionConfiguration < Struct.new( :chunking_configuration, :custom_transformation_configuration, :parsing_configuration) SENSITIVE = [] include Aws::Structure end  |