com.amazonaws.services.bedrock.model.CustomModelSummary Maven / Gradle / Ivy
Show all versions of aws-java-sdk-bedrock Show documentation
/*
* 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;
/**
*
* Summary information for a custom model.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CustomModelSummary implements Serializable, Cloneable, StructuredPojo {
/**
*
* The Amazon Resource Name (ARN) of the custom model.
*
*/
private String modelArn;
/**
*
* The name of the custom model.
*
*/
private String modelName;
/**
*
* Creation time of the model.
*
*/
private java.util.Date creationTime;
/**
*
* The base model Amazon Resource Name (ARN).
*
*/
private String baseModelArn;
/**
*
* The base model name.
*
*/
private String baseModelName;
/**
*
* Specifies whether to carry out continued pre-training of a model or whether to fine-tune it. For more
* information, see Custom
* models.
*
*/
private String customizationType;
/**
*
* The Amazon Resource Name (ARN) of the custom model.
*
*
* @param modelArn
* The Amazon Resource Name (ARN) of the custom model.
*/
public void setModelArn(String modelArn) {
this.modelArn = modelArn;
}
/**
*
* The Amazon Resource Name (ARN) of the custom model.
*
*
* @return The Amazon Resource Name (ARN) of the custom model.
*/
public String getModelArn() {
return this.modelArn;
}
/**
*
* The Amazon Resource Name (ARN) of the custom model.
*
*
* @param modelArn
* The Amazon Resource Name (ARN) of the custom model.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomModelSummary withModelArn(String modelArn) {
setModelArn(modelArn);
return this;
}
/**
*
* The name of the custom model.
*
*
* @param modelName
* The name of the custom model.
*/
public void setModelName(String modelName) {
this.modelName = modelName;
}
/**
*
* The name of the custom model.
*
*
* @return The name of the custom model.
*/
public String getModelName() {
return this.modelName;
}
/**
*
* The name of the custom model.
*
*
* @param modelName
* The name of the custom model.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomModelSummary withModelName(String modelName) {
setModelName(modelName);
return this;
}
/**
*
* Creation time of the model.
*
*
* @param creationTime
* Creation time of the model.
*/
public void setCreationTime(java.util.Date creationTime) {
this.creationTime = creationTime;
}
/**
*
* Creation time of the model.
*
*
* @return Creation time of the model.
*/
public java.util.Date getCreationTime() {
return this.creationTime;
}
/**
*
* Creation time of the model.
*
*
* @param creationTime
* Creation time of the model.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomModelSummary withCreationTime(java.util.Date creationTime) {
setCreationTime(creationTime);
return this;
}
/**
*
* The base model Amazon Resource Name (ARN).
*
*
* @param baseModelArn
* The base model Amazon Resource Name (ARN).
*/
public void setBaseModelArn(String baseModelArn) {
this.baseModelArn = baseModelArn;
}
/**
*
* The base model Amazon Resource Name (ARN).
*
*
* @return The base model Amazon Resource Name (ARN).
*/
public String getBaseModelArn() {
return this.baseModelArn;
}
/**
*
* The base model Amazon Resource Name (ARN).
*
*
* @param baseModelArn
* The base model Amazon Resource Name (ARN).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomModelSummary withBaseModelArn(String baseModelArn) {
setBaseModelArn(baseModelArn);
return this;
}
/**
*
* The base model name.
*
*
* @param baseModelName
* The base model name.
*/
public void setBaseModelName(String baseModelName) {
this.baseModelName = baseModelName;
}
/**
*
* The base model name.
*
*
* @return The base model name.
*/
public String getBaseModelName() {
return this.baseModelName;
}
/**
*
* The base model name.
*
*
* @param baseModelName
* The base model name.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomModelSummary withBaseModelName(String baseModelName) {
setBaseModelName(baseModelName);
return this;
}
/**
*
* Specifies whether to carry out continued pre-training of a model or whether to fine-tune it. For more
* information, see Custom
* models.
*
*
* @param customizationType
* Specifies whether to carry out continued pre-training of a model or whether to fine-tune it. For more
* information, see Custom
* models.
* @see CustomizationType
*/
public void setCustomizationType(String customizationType) {
this.customizationType = customizationType;
}
/**
*
* Specifies whether to carry out continued pre-training of a model or whether to fine-tune it. For more
* information, see Custom
* models.
*
*
* @return Specifies whether to carry out continued pre-training of a model or whether to fine-tune it. For more
* information, see Custom
* models.
* @see CustomizationType
*/
public String getCustomizationType() {
return this.customizationType;
}
/**
*
* Specifies whether to carry out continued pre-training of a model or whether to fine-tune it. For more
* information, see Custom
* models.
*
*
* @param customizationType
* Specifies whether to carry out continued pre-training of a model or whether to fine-tune it. For more
* information, see Custom
* models.
* @return Returns a reference to this object so that method calls can be chained together.
* @see CustomizationType
*/
public CustomModelSummary withCustomizationType(String customizationType) {
setCustomizationType(customizationType);
return this;
}
/**
*
* Specifies whether to carry out continued pre-training of a model or whether to fine-tune it. For more
* information, see Custom
* models.
*
*
* @param customizationType
* Specifies whether to carry out continued pre-training of a model or whether to fine-tune it. For more
* information, see Custom
* models.
* @return Returns a reference to this object so that method calls can be chained together.
* @see CustomizationType
*/
public CustomModelSummary withCustomizationType(CustomizationType customizationType) {
this.customizationType = customizationType.toString();
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 (getModelArn() != null)
sb.append("ModelArn: ").append(getModelArn()).append(",");
if (getModelName() != null)
sb.append("ModelName: ").append(getModelName()).append(",");
if (getCreationTime() != null)
sb.append("CreationTime: ").append(getCreationTime()).append(",");
if (getBaseModelArn() != null)
sb.append("BaseModelArn: ").append(getBaseModelArn()).append(",");
if (getBaseModelName() != null)
sb.append("BaseModelName: ").append(getBaseModelName()).append(",");
if (getCustomizationType() != null)
sb.append("CustomizationType: ").append(getCustomizationType());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CustomModelSummary == false)
return false;
CustomModelSummary other = (CustomModelSummary) obj;
if (other.getModelArn() == null ^ this.getModelArn() == null)
return false;
if (other.getModelArn() != null && other.getModelArn().equals(this.getModelArn()) == false)
return false;
if (other.getModelName() == null ^ this.getModelName() == null)
return false;
if (other.getModelName() != null && other.getModelName().equals(this.getModelName()) == false)
return false;
if (other.getCreationTime() == null ^ this.getCreationTime() == null)
return false;
if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false)
return false;
if (other.getBaseModelArn() == null ^ this.getBaseModelArn() == null)
return false;
if (other.getBaseModelArn() != null && other.getBaseModelArn().equals(this.getBaseModelArn()) == false)
return false;
if (other.getBaseModelName() == null ^ this.getBaseModelName() == null)
return false;
if (other.getBaseModelName() != null && other.getBaseModelName().equals(this.getBaseModelName()) == false)
return false;
if (other.getCustomizationType() == null ^ this.getCustomizationType() == null)
return false;
if (other.getCustomizationType() != null && other.getCustomizationType().equals(this.getCustomizationType()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getModelArn() == null) ? 0 : getModelArn().hashCode());
hashCode = prime * hashCode + ((getModelName() == null) ? 0 : getModelName().hashCode());
hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode());
hashCode = prime * hashCode + ((getBaseModelArn() == null) ? 0 : getBaseModelArn().hashCode());
hashCode = prime * hashCode + ((getBaseModelName() == null) ? 0 : getBaseModelName().hashCode());
hashCode = prime * hashCode + ((getCustomizationType() == null) ? 0 : getCustomizationType().hashCode());
return hashCode;
}
@Override
public CustomModelSummary clone() {
try {
return (CustomModelSummary) 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.CustomModelSummaryMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}