Class: Aws::BedrockAgentCoreControl::Types::EvaluatorModelConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::EvaluatorModelConfig
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Note:
EvaluatorModelConfig is a union - when making an API calls you must set exactly one of the members.
Note:
EvaluatorModelConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EvaluatorModelConfig corresponding to the set member.
The model configuration that specifies which foundation model to use for evaluation and how to configure it.
Defined Under Namespace
Classes: BedrockEvaluatorModelConfig, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bedrock_evaluator_model_config ⇒ Types::BedrockEvaluatorModelConfig
The Amazon Bedrock model configuration for evaluation.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#bedrock_evaluator_model_config ⇒ Types::BedrockEvaluatorModelConfig
The Amazon Bedrock model configuration for evaluation.
5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5708 class EvaluatorModelConfig < Struct.new( :bedrock_evaluator_model_config, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class BedrockEvaluatorModelConfig < EvaluatorModelConfig; end class Unknown < EvaluatorModelConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
5708 5709 5710 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5708 def unknown @unknown end |