Class: Aws::Bedrock::Types::RAGConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-bedrock/types.rb

Overview

Note:

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

Note:

RAGConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RAGConfig corresponding to the set member.

Contains configuration details for retrieval of information and response generation.

Direct Known Subclasses

KnowledgeBaseConfig, Unknown

Defined Under Namespace

Classes: KnowledgeBaseConfig, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#knowledge_base_configTypes::KnowledgeBaseConfig

Contains configuration details for knowledge base retrieval and response generation.



6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
# File 'lib/aws-sdk-bedrock/types.rb', line 6212

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

  class KnowledgeBaseConfig < RAGConfig; end
  class Unknown < RAGConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6212
6213
6214
# File 'lib/aws-sdk-bedrock/types.rb', line 6212

def unknown
  @unknown
end