@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class EvaluationBedrockModel extends Object implements Serializable, Cloneable, StructuredPojo
Contains the ARN of the Amazon Bedrock models specified in your model evaluation job. Each Amazon Bedrock model
supports different inferenceParams
. To learn more about supported inference parameters for Amazon
Bedrock models, see Inference
parameters for foundation models.
The inferenceParams
are specified using JSON. To successfully insert JSON as string make sure that all
quotations are properly escaped. For example, "temperature":"0.25"
key value pair would need to be
formatted as \"temperature\":\"0.25\"
to successfully accepted in the request.
Constructor and Description |
---|
EvaluationBedrockModel() |
Modifier and Type | Method and Description |
---|---|
EvaluationBedrockModel |
clone() |
boolean |
equals(Object obj) |
String |
getInferenceParams()
Each Amazon Bedrock support different inference parameters that change how the model behaves during inference.
|
String |
getModelIdentifier()
The ARN of the Amazon Bedrock model specified.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setInferenceParams(String inferenceParams)
Each Amazon Bedrock support different inference parameters that change how the model behaves during inference.
|
void |
setModelIdentifier(String modelIdentifier)
The ARN of the Amazon Bedrock model specified.
|
String |
toString()
Returns a string representation of this object.
|
EvaluationBedrockModel |
withInferenceParams(String inferenceParams)
Each Amazon Bedrock support different inference parameters that change how the model behaves during inference.
|
EvaluationBedrockModel |
withModelIdentifier(String modelIdentifier)
The ARN of the Amazon Bedrock model specified.
|
public void setModelIdentifier(String modelIdentifier)
The ARN of the Amazon Bedrock model specified.
modelIdentifier
- The ARN of the Amazon Bedrock model specified.public String getModelIdentifier()
The ARN of the Amazon Bedrock model specified.
public EvaluationBedrockModel withModelIdentifier(String modelIdentifier)
The ARN of the Amazon Bedrock model specified.
modelIdentifier
- The ARN of the Amazon Bedrock model specified.public void setInferenceParams(String inferenceParams)
Each Amazon Bedrock support different inference parameters that change how the model behaves during inference.
inferenceParams
- Each Amazon Bedrock support different inference parameters that change how the model behaves during
inference.public String getInferenceParams()
Each Amazon Bedrock support different inference parameters that change how the model behaves during inference.
public EvaluationBedrockModel withInferenceParams(String inferenceParams)
Each Amazon Bedrock support different inference parameters that change how the model behaves during inference.
inferenceParams
- Each Amazon Bedrock support different inference parameters that change how the model behaves during
inference.public String toString()
toString
in class Object
Object.toString()
public EvaluationBedrockModel clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.