Class: Aws::Bedrock::Types::RAGConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::RAGConfig
- 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
Defined Under Namespace
Classes: KnowledgeBaseConfig, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#knowledge_base_config ⇒ Types::KnowledgeBaseConfig
Contains configuration details for knowledge base retrieval and response generation.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#knowledge_base_config ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
6212 6213 6214 |
# File 'lib/aws-sdk-bedrock/types.rb', line 6212 def unknown @unknown end |