Class: Aws::BedrockAgentCoreControl::Types::EvaluatorModelConfig

Inherits:
Struct
  • Object
show all
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

BedrockEvaluatorModelConfig, Unknown

Defined Under Namespace

Classes: BedrockEvaluatorModelConfig, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bedrock_evaluator_model_configTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3638
3639
3640
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3638

def unknown
  @unknown
end