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.
Direct Known Subclasses
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.
3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3638 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
3638 3639 3640 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3638 def unknown @unknown end |