Class: Aws::BedrockAgentRuntime::Types::KnowledgeBaseLookupInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::KnowledgeBaseLookupInput
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Contains details about the knowledge base to look up and the query to be made.
Constant Summary collapse
- SENSITIVE =
[:knowledge_base_id, :text]
Instance Attribute Summary collapse
-
#knowledge_base_id ⇒ String
The unique identifier of the knowledge base to look up.
-
#text ⇒ String
The query made to the knowledge base.
Instance Attribute Details
#knowledge_base_id ⇒ String
The unique identifier of the knowledge base to look up.
3225 3226 3227 3228 3229 3230 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 3225 class KnowledgeBaseLookupInput < Struct.new( :knowledge_base_id, :text) SENSITIVE = [:knowledge_base_id, :text] include Aws::Structure end |
#text ⇒ String
The query made to the knowledge base.
3225 3226 3227 3228 3229 3230 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 3225 class KnowledgeBaseLookupInput < Struct.new( :knowledge_base_id, :text) SENSITIVE = [:knowledge_base_id, :text] include Aws::Structure end |