com.amazonaws.services.bedrock.model.EvaluationInferenceConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-bedrock Show documentation
Show all versions of aws-java-sdk-bedrock Show documentation
The AWS Java SDK for Amazon Bedrock module holds the client classes that are used for communicating with Amazon Bedrock Service
The newest version!
/*
* Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.bedrock.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Used to define the models you want used in your model evaluation job. Automated model evaluation jobs support only a
* single model. In a human-based model evaluation job, your annotator can compare the responses for up to two different
* models.
*
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class EvaluationInferenceConfig implements Serializable, Cloneable, StructuredPojo {
/**
*
* Used to specify the models.
*
*/
private java.util.List models;
/**
*
* Used to specify the models.
*
*
* @return Used to specify the models.
*/
public java.util.List getModels() {
return models;
}
/**
*
* Used to specify the models.
*
*
* @param models
* Used to specify the models.
*/
public void setModels(java.util.Collection models) {
if (models == null) {
this.models = null;
return;
}
this.models = new java.util.ArrayList(models);
}
/**
*
* Used to specify the models.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setModels(java.util.Collection)} or {@link #withModels(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param models
* Used to specify the models.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public EvaluationInferenceConfig withModels(EvaluationModelConfig... models) {
if (this.models == null) {
setModels(new java.util.ArrayList(models.length));
}
for (EvaluationModelConfig ele : models) {
this.models.add(ele);
}
return this;
}
/**
*
* Used to specify the models.
*
*
* @param models
* Used to specify the models.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public EvaluationInferenceConfig withModels(java.util.Collection models) {
setModels(models);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getModels() != null)
sb.append("Models: ").append(getModels());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof EvaluationInferenceConfig == false)
return false;
EvaluationInferenceConfig other = (EvaluationInferenceConfig) obj;
if (other.getModels() == null ^ this.getModels() == null)
return false;
if (other.getModels() != null && other.getModels().equals(this.getModels()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getModels() == null) ? 0 : getModels().hashCode());
return hashCode;
}
@Override
public EvaluationInferenceConfig clone() {
try {
return (EvaluationInferenceConfig) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.bedrock.model.transform.EvaluationInferenceConfigMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy