Class: Aws::Bedrock::Types::EvaluationModelConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::EvaluationModelConfig
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-bedrock/types.rb
Overview
EvaluationModelConfig is a union - when making an API calls you must set exactly one of the members.
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, PrecomputedInferenceSource, 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.
-
#precomputed_inference_source ⇒ Types::EvaluationPrecomputedInferenceSource
Defines the model used to generate inference response data for a model evaluation job where you provide your own inference response data.
-
#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.
4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 |
# File 'lib/aws-sdk-bedrock/types.rb', line 4593 class EvaluationModelConfig < Struct.new( :bedrock_model, :precomputed_inference_source, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class BedrockModel < EvaluationModelConfig; end class PrecomputedInferenceSource < EvaluationModelConfig; end class Unknown < EvaluationModelConfig; end end |
#precomputed_inference_source ⇒ Types::EvaluationPrecomputedInferenceSource
Defines the model used to generate inference response data for a model evaluation job where you provide your own inference response data.
4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 |
# File 'lib/aws-sdk-bedrock/types.rb', line 4593 class EvaluationModelConfig < Struct.new( :bedrock_model, :precomputed_inference_source, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class BedrockModel < EvaluationModelConfig; end class PrecomputedInferenceSource < EvaluationModelConfig; end class Unknown < EvaluationModelConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4593 4594 4595 |
# File 'lib/aws-sdk-bedrock/types.rb', line 4593 def unknown @unknown end |