Class: Aws::BedrockAgentRuntime::Types::KnowledgeBaseLookupInput

Inherits:
Struct
  • Object
show all
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 =
[:text, :knowledge_base_id]

Instance Attribute Summary collapse

Instance Attribute Details

#knowledge_base_idString

The unique identifier of the knowledge base to look up.

Returns:

  • (String)


4747
4748
4749
4750
4751
4752
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 4747

class KnowledgeBaseLookupInput < Struct.new(
  :text,
  :knowledge_base_id)
  SENSITIVE = [:text, :knowledge_base_id]
  include Aws::Structure
end

#textString

The query made to the knowledge base.

Returns:

  • (String)


4747
4748
4749
4750
4751
4752
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 4747

class KnowledgeBaseLookupInput < Struct.new(
  :text,
  :knowledge_base_id)
  SENSITIVE = [:text, :knowledge_base_id]
  include Aws::Structure
end