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 =
[:knowledge_base_id, :text]

Instance Attribute Summary collapse

Instance Attribute Details

#knowledge_base_idString

The unique identifier of the knowledge base to look up.

Returns:

  • (String)


980
981
982
983
984
985
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 980

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

#textString

The query made to the knowledge base.

Returns:

  • (String)


980
981
982
983
984
985
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 980

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