Class: Aws::Bedrock::Types::EvaluationModelConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::EvaluationModelConfig
- 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
Defined Under Namespace
Classes: BedrockModel, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bedrock_model ⇒ Types::EvaluationBedrockModel
Defines the Amazon Bedrock model or inference profile and inference parameters you want used.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#bedrock_model ⇒ Types::EvaluationBedrockModel
Defines the Amazon Bedrock model or inference profile and inference parameters you want used.
1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1500 class EvaluationModelConfig < Struct.new( :bedrock_model, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class BedrockModel < EvaluationModelConfig; end class Unknown < EvaluationModelConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1500 1501 1502 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1500 def unknown @unknown end |