Class: Aws::Bedrock::Types::EvaluationModelConfig

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

Overview

Note:

EvaluationModelConfig is a union - when making an API calls you must set exactly one of the members.

Note:

EvaluationModelConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EvaluationModelConfig corresponding to the set member.

Defines the models used in the model evaluation job.

Direct Known Subclasses

BedrockModel, Unknown

Defined Under Namespace

Classes: BedrockModel, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bedrock_modelTypes::EvaluationBedrockModel

Defines the Amazon Bedrock model and inference parameters you want used.



818
819
820
821
822
823
824
825
826
827
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 818

class EvaluationModelConfig < Struct.new(
  :bedrock_model,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class BedrockModel < EvaluationModelConfig; end
  class Unknown < EvaluationModelConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



818
819
820
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 818

def unknown
  @unknown
end