Class: Aws::BedrockAgent::Types::AssociateAgentKnowledgeBaseRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::AssociateAgentKnowledgeBaseRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-bedrockagent/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #agent_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the agent with which you want to associate the knowledge base.
 - 
  
    
      #agent_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The version of the agent with which you want to associate the knowledge base.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A description of what the agent should use the knowledge base for.
 - 
  
    
      #knowledge_base_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the knowledge base to associate with the agent.
 - 
  
    
      #knowledge_base_state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies whether to use the knowledge base or not when sending an [InvokeAgent] request.
 
Instance Attribute Details
#agent_id ⇒ String
The unique identifier of the agent with which you want to associate the knowledge base.
      901 902 903 904 905 906 907 908 909  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 901 class AssociateAgentKnowledgeBaseRequest < Struct.new( :agent_id, :agent_version, :description, :knowledge_base_id, :knowledge_base_state) SENSITIVE = [] include Aws::Structure end  | 
  
#agent_version ⇒ String
The version of the agent with which you want to associate the knowledge base.
      901 902 903 904 905 906 907 908 909  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 901 class AssociateAgentKnowledgeBaseRequest < Struct.new( :agent_id, :agent_version, :description, :knowledge_base_id, :knowledge_base_state) SENSITIVE = [] include Aws::Structure end  | 
  
#description ⇒ String
A description of what the agent should use the knowledge base for.
      901 902 903 904 905 906 907 908 909  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 901 class AssociateAgentKnowledgeBaseRequest < Struct.new( :agent_id, :agent_version, :description, :knowledge_base_id, :knowledge_base_state) SENSITIVE = [] include Aws::Structure end  | 
  
#knowledge_base_id ⇒ String
The unique identifier of the knowledge base to associate with the agent.
      901 902 903 904 905 906 907 908 909  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 901 class AssociateAgentKnowledgeBaseRequest < Struct.new( :agent_id, :agent_version, :description, :knowledge_base_id, :knowledge_base_state) SENSITIVE = [] include Aws::Structure end  | 
  
#knowledge_base_state ⇒ String
Specifies whether to use the knowledge base or not when sending an
- InvokeAgent][1
 - 
request.
 
[1]: docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_InvokeAgent.html
      901 902 903 904 905 906 907 908 909  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 901 class AssociateAgentKnowledgeBaseRequest < Struct.new( :agent_id, :agent_version, :description, :knowledge_base_id, :knowledge_base_state) SENSITIVE = [] include Aws::Structure end  |