Class: Aws::BedrockAgent::Types::KnowledgeBaseFlowNodeConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::KnowledgeBaseFlowNodeConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-bedrockagent/types.rb
 
Overview
Contains configurations for a knowledge base node in a flow. This node takes a query as the input and returns, as the output, the retrieved responses directly (as an array) or a response generated based on the retrieved responses. For more information, see [Node types in Amazon Bedrock works] in the Amazon Bedrock User Guide.
[1]: docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #knowledge_base_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the knowledge base to query.
 - 
  
    
      #model_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the model or [inference profile] to use to generate a response from the query results.
 
Instance Attribute Details
#knowledge_base_id ⇒ String
The unique identifier of the knowledge base to query.
      4613 4614 4615 4616 4617 4618  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 4613 class KnowledgeBaseFlowNodeConfiguration < Struct.new( :knowledge_base_id, :model_id) SENSITIVE = [] include Aws::Structure end  | 
  
#model_id ⇒ String
The unique identifier of the model or [inference profile] to use to generate a response from the query results. Omit this field if you want to return the retrieved results as an array.
[1]: docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html
      4613 4614 4615 4616 4617 4618  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 4613 class KnowledgeBaseFlowNodeConfiguration < Struct.new( :knowledge_base_id, :model_id) SENSITIVE = [] include Aws::Structure end  |