Class: Aws::BedrockAgentRuntime::Types::RetrieverConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb

Overview

Note:

RetrieverConfiguration is a union - when making an API calls you must set exactly one of the members.

Configuration for a retriever, specified as a union of retriever types.

Defined Under Namespace

Classes: KnowledgeBase, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#knowledge_baseTypes::KnowledgeBaseRetrieverConfiguration

Configuration for a knowledge base retriever.



9282
9283
9284
9285
9286
9287
9288
9289
9290
9291
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 9282

class RetrieverConfiguration < Struct.new(
  :knowledge_base,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class KnowledgeBase < RetrieverConfiguration; end
  class Unknown < RetrieverConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



9282
9283
9284
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 9282

def unknown
  @unknown
end