/* * Copyright 2018-2023 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.glue.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** * <p> * An error record for table-version operations. * </p> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TableVersionError" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class TableVersionError implements Serializable, Cloneable, StructuredPojo { /** * <p> * The name of the table in question. * </p> */ private String tableName; /** * <p> * The ID value of the version in question. A <code>VersionID</code> is a string representation of an integer. Each * version is incremented by 1. * </p> */ private String versionId; /** * <p> * The details about the error. * </p> */ private ErrorDetail errorDetail; /** * <p> * The name of the table in question. * </p> * * @param tableName * The name of the table in question. */ public void setTableName(String tableName) { this.tableName = tableName; } /** * <p> * The name of the table in question. * </p> * * @return The name of the table in question. */ public String getTableName() { return this.tableName; } /** * <p> * The name of the table in question. * </p> * * @param tableName * The name of the table in question. * @return Returns a reference to this object so that method calls can be chained together. */ public TableVersionError withTableName(String tableName) { setTableName(tableName); return this; } /** * <p> * The ID value of the version in question. A <code>VersionID</code> is a string representation of an integer. Each * version is incremented by 1. * </p> * * @param versionId * The ID value of the version in question. A <code>VersionID</code> is a string representation of an * integer. Each version is incremented by 1. */ public void setVersionId(String versionId) { this.versionId = versionId; } /** * <p> * The ID value of the version in question. A <code>VersionID</code> is a string representation of an integer. Each * version is incremented by 1. * </p> * * @return The ID value of the version in question. A <code>VersionID</code> is a string representation of an * integer. Each version is incremented by 1. */ public String getVersionId() { return this.versionId; } /** * <p> * The ID value of the version in question. A <code>VersionID</code> is a string representation of an integer. Each * version is incremented by 1. * </p> * * @param versionId * The ID value of the version in question. A <code>VersionID</code> is a string representation of an * integer. Each version is incremented by 1. * @return Returns a reference to this object so that method calls can be chained together. */ public TableVersionError withVersionId(String versionId) { setVersionId(versionId); return this; } /** * <p> * The details about the error. * </p> * * @param errorDetail * The details about the error. */ public void setErrorDetail(ErrorDetail errorDetail) { this.errorDetail = errorDetail; } /** * <p> * The details about the error. * </p> * * @return The details about the error. */ public ErrorDetail getErrorDetail() { return this.errorDetail; } /** * <p> * The details about the error. * </p> * * @param errorDetail * The details about the error. * @return Returns a reference to this object so that method calls can be chained together. */ public TableVersionError withErrorDetail(ErrorDetail errorDetail) { setErrorDetail(errorDetail); 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 (getTableName() != null) sb.append("TableName: ").append(getTableName()).append(","); if (getVersionId() != null) sb.append("VersionId: ").append(getVersionId()).append(","); if (getErrorDetail() != null) sb.append("ErrorDetail: ").append(getErrorDetail()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TableVersionError == false) return false; TableVersionError other = (TableVersionError) obj; if (other.getTableName() == null ^ this.getTableName() == null) return false; if (other.getTableName() != null && other.getTableName().equals(this.getTableName()) == false) return false; if (other.getVersionId() == null ^ this.getVersionId() == null) return false; if (other.getVersionId() != null && other.getVersionId().equals(this.getVersionId()) == false) return false; if (other.getErrorDetail() == null ^ this.getErrorDetail() == null) return false; if (other.getErrorDetail() != null && other.getErrorDetail().equals(this.getErrorDetail()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTableName() == null) ? 0 : getTableName().hashCode()); hashCode = prime * hashCode + ((getVersionId() == null) ? 0 : getVersionId().hashCode()); hashCode = prime * hashCode + ((getErrorDetail() == null) ? 0 : getErrorDetail().hashCode()); return hashCode; } @Override public TableVersionError clone() { try { return (TableVersionError) 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.glue.model.transform.TableVersionErrorMarshaller.getInstance().marshall(this, protocolMarshaller); } }