Class: Aws::Bedrock::Types::EvaluationRagConfigSummary

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

Overview

A summary of the RAG resources used in an Amazon Bedrock Knowledge Base evaluation job. These resources can be Knowledge Bases in Amazon Bedrock or RAG sources outside of Amazon Bedrock that you use to generate your own inference response data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bedrock_knowledge_base_identifiersArray<String>

The Amazon Resource Names (ARNs) of the Knowledge Base resources used for a Knowledge Base evaluation job where Amazon Bedrock invokes the Knowledge Base for you.

Returns:

  • (Array<String>)


1952
1953
1954
1955
1956
1957
# File 'lib/aws-sdk-bedrock/types.rb', line 1952

class EvaluationRagConfigSummary < Struct.new(
  :bedrock_knowledge_base_identifiers,
  :precomputed_rag_source_identifiers)
  SENSITIVE = []
  include Aws::Structure
end

#precomputed_rag_source_identifiersArray<String>

A label that identifies the RAG sources used for a Knowledge Base evaluation job where you provide your own inference response data.

Returns:

  • (Array<String>)


1952
1953
1954
1955
1956
1957
# File 'lib/aws-sdk-bedrock/types.rb', line 1952

class EvaluationRagConfigSummary < Struct.new(
  :bedrock_knowledge_base_identifiers,
  :precomputed_rag_source_identifiers)
  SENSITIVE = []
  include Aws::Structure
end