com.amazonaws.services.forecast.model.DescribeExplainabilityResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-forecast 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.forecast.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DescribeExplainabilityResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The Amazon Resource Name (ARN) of the Explainability.
*
*/
private String explainabilityArn;
/**
*
* The name of the Explainability.
*
*/
private String explainabilityName;
/**
*
* The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability resource.
*
*/
private String resourceArn;
/**
*
* The configuration settings that define the granularity of time series and time points for the Explainability.
*
*/
private ExplainabilityConfig explainabilityConfig;
/**
*
* Whether the visualization was enabled for the Explainability resource.
*
*/
private Boolean enableVisualization;
private DataSource dataSource;
private Schema schema;
/**
*
* If TimePointGranularity
is set to SPECIFIC
, the first time point in the Explainability.
*
*/
private String startDateTime;
/**
*
* If TimePointGranularity
is set to SPECIFIC
, the last time point in the Explainability.
*
*/
private String endDateTime;
/**
*
* The estimated time remaining in minutes for the CreateExplainability job to complete.
*
*/
private Long estimatedTimeRemainingInMinutes;
/**
*
* If an error occurred, a message about the error.
*
*/
private String message;
/**
*
* The status of the Explainability resource. States include:
*
*
* -
*
* ACTIVE
*
*
* -
*
* CREATE_PENDING
, CREATE_IN_PROGRESS
, CREATE_FAILED
*
*
* -
*
* CREATE_STOPPING
, CREATE_STOPPED
*
*
* -
*
* DELETE_PENDING
, DELETE_IN_PROGRESS
, DELETE_FAILED
*
*
*
*/
private String status;
/**
*
* When the Explainability resource was created.
*
*/
private java.util.Date creationTime;
/**
*
* The last time the resource was modified. The timestamp depends on the status of the job:
*
*
* -
*
* CREATE_PENDING
- The CreationTime
.
*
*
* -
*
* CREATE_IN_PROGRESS
- The current timestamp.
*
*
* -
*
* CREATE_STOPPING
- The current timestamp.
*
*
* -
*
* CREATE_STOPPED
- When the job stopped.
*
*
* -
*
* ACTIVE
or CREATE_FAILED
- When the job finished or failed.
*
*
*
*/
private java.util.Date lastModificationTime;
/**
*
* The Amazon Resource Name (ARN) of the Explainability.
*
*
* @param explainabilityArn
* The Amazon Resource Name (ARN) of the Explainability.
*/
public void setExplainabilityArn(String explainabilityArn) {
this.explainabilityArn = explainabilityArn;
}
/**
*
* The Amazon Resource Name (ARN) of the Explainability.
*
*
* @return The Amazon Resource Name (ARN) of the Explainability.
*/
public String getExplainabilityArn() {
return this.explainabilityArn;
}
/**
*
* The Amazon Resource Name (ARN) of the Explainability.
*
*
* @param explainabilityArn
* The Amazon Resource Name (ARN) of the Explainability.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withExplainabilityArn(String explainabilityArn) {
setExplainabilityArn(explainabilityArn);
return this;
}
/**
*
* The name of the Explainability.
*
*
* @param explainabilityName
* The name of the Explainability.
*/
public void setExplainabilityName(String explainabilityName) {
this.explainabilityName = explainabilityName;
}
/**
*
* The name of the Explainability.
*
*
* @return The name of the Explainability.
*/
public String getExplainabilityName() {
return this.explainabilityName;
}
/**
*
* The name of the Explainability.
*
*
* @param explainabilityName
* The name of the Explainability.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withExplainabilityName(String explainabilityName) {
setExplainabilityName(explainabilityName);
return this;
}
/**
*
* The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability resource.
*
*
* @param resourceArn
* The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability resource.
*/
public void setResourceArn(String resourceArn) {
this.resourceArn = resourceArn;
}
/**
*
* The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability resource.
*
*
* @return The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability resource.
*/
public String getResourceArn() {
return this.resourceArn;
}
/**
*
* The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability resource.
*
*
* @param resourceArn
* The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withResourceArn(String resourceArn) {
setResourceArn(resourceArn);
return this;
}
/**
*
* The configuration settings that define the granularity of time series and time points for the Explainability.
*
*
* @param explainabilityConfig
* The configuration settings that define the granularity of time series and time points for the
* Explainability.
*/
public void setExplainabilityConfig(ExplainabilityConfig explainabilityConfig) {
this.explainabilityConfig = explainabilityConfig;
}
/**
*
* The configuration settings that define the granularity of time series and time points for the Explainability.
*
*
* @return The configuration settings that define the granularity of time series and time points for the
* Explainability.
*/
public ExplainabilityConfig getExplainabilityConfig() {
return this.explainabilityConfig;
}
/**
*
* The configuration settings that define the granularity of time series and time points for the Explainability.
*
*
* @param explainabilityConfig
* The configuration settings that define the granularity of time series and time points for the
* Explainability.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withExplainabilityConfig(ExplainabilityConfig explainabilityConfig) {
setExplainabilityConfig(explainabilityConfig);
return this;
}
/**
*
* Whether the visualization was enabled for the Explainability resource.
*
*
* @param enableVisualization
* Whether the visualization was enabled for the Explainability resource.
*/
public void setEnableVisualization(Boolean enableVisualization) {
this.enableVisualization = enableVisualization;
}
/**
*
* Whether the visualization was enabled for the Explainability resource.
*
*
* @return Whether the visualization was enabled for the Explainability resource.
*/
public Boolean getEnableVisualization() {
return this.enableVisualization;
}
/**
*
* Whether the visualization was enabled for the Explainability resource.
*
*
* @param enableVisualization
* Whether the visualization was enabled for the Explainability resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withEnableVisualization(Boolean enableVisualization) {
setEnableVisualization(enableVisualization);
return this;
}
/**
*
* Whether the visualization was enabled for the Explainability resource.
*
*
* @return Whether the visualization was enabled for the Explainability resource.
*/
public Boolean isEnableVisualization() {
return this.enableVisualization;
}
/**
* @param dataSource
*/
public void setDataSource(DataSource dataSource) {
this.dataSource = dataSource;
}
/**
* @return
*/
public DataSource getDataSource() {
return this.dataSource;
}
/**
* @param dataSource
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withDataSource(DataSource dataSource) {
setDataSource(dataSource);
return this;
}
/**
* @param schema
*/
public void setSchema(Schema schema) {
this.schema = schema;
}
/**
* @return
*/
public Schema getSchema() {
return this.schema;
}
/**
* @param schema
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withSchema(Schema schema) {
setSchema(schema);
return this;
}
/**
*
* If TimePointGranularity
is set to SPECIFIC
, the first time point in the Explainability.
*
*
* @param startDateTime
* If TimePointGranularity
is set to SPECIFIC
, the first time point in the
* Explainability.
*/
public void setStartDateTime(String startDateTime) {
this.startDateTime = startDateTime;
}
/**
*
* If TimePointGranularity
is set to SPECIFIC
, the first time point in the Explainability.
*
*
* @return If TimePointGranularity
is set to SPECIFIC
, the first time point in the
* Explainability.
*/
public String getStartDateTime() {
return this.startDateTime;
}
/**
*
* If TimePointGranularity
is set to SPECIFIC
, the first time point in the Explainability.
*
*
* @param startDateTime
* If TimePointGranularity
is set to SPECIFIC
, the first time point in the
* Explainability.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withStartDateTime(String startDateTime) {
setStartDateTime(startDateTime);
return this;
}
/**
*
* If TimePointGranularity
is set to SPECIFIC
, the last time point in the Explainability.
*
*
* @param endDateTime
* If TimePointGranularity
is set to SPECIFIC
, the last time point in the
* Explainability.
*/
public void setEndDateTime(String endDateTime) {
this.endDateTime = endDateTime;
}
/**
*
* If TimePointGranularity
is set to SPECIFIC
, the last time point in the Explainability.
*
*
* @return If TimePointGranularity
is set to SPECIFIC
, the last time point in the
* Explainability.
*/
public String getEndDateTime() {
return this.endDateTime;
}
/**
*
* If TimePointGranularity
is set to SPECIFIC
, the last time point in the Explainability.
*
*
* @param endDateTime
* If TimePointGranularity
is set to SPECIFIC
, the last time point in the
* Explainability.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withEndDateTime(String endDateTime) {
setEndDateTime(endDateTime);
return this;
}
/**
*
* The estimated time remaining in minutes for the CreateExplainability job to complete.
*
*
* @param estimatedTimeRemainingInMinutes
* The estimated time remaining in minutes for the CreateExplainability job to complete.
*/
public void setEstimatedTimeRemainingInMinutes(Long estimatedTimeRemainingInMinutes) {
this.estimatedTimeRemainingInMinutes = estimatedTimeRemainingInMinutes;
}
/**
*
* The estimated time remaining in minutes for the CreateExplainability job to complete.
*
*
* @return The estimated time remaining in minutes for the CreateExplainability job to complete.
*/
public Long getEstimatedTimeRemainingInMinutes() {
return this.estimatedTimeRemainingInMinutes;
}
/**
*
* The estimated time remaining in minutes for the CreateExplainability job to complete.
*
*
* @param estimatedTimeRemainingInMinutes
* The estimated time remaining in minutes for the CreateExplainability job to complete.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withEstimatedTimeRemainingInMinutes(Long estimatedTimeRemainingInMinutes) {
setEstimatedTimeRemainingInMinutes(estimatedTimeRemainingInMinutes);
return this;
}
/**
*
* If an error occurred, a message about the error.
*
*
* @param message
* If an error occurred, a message about the error.
*/
public void setMessage(String message) {
this.message = message;
}
/**
*
* If an error occurred, a message about the error.
*
*
* @return If an error occurred, a message about the error.
*/
public String getMessage() {
return this.message;
}
/**
*
* If an error occurred, a message about the error.
*
*
* @param message
* If an error occurred, a message about the error.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withMessage(String message) {
setMessage(message);
return this;
}
/**
*
* The status of the Explainability resource. States include:
*
*
* -
*
* ACTIVE
*
*
* -
*
* CREATE_PENDING
, CREATE_IN_PROGRESS
, CREATE_FAILED
*
*
* -
*
* CREATE_STOPPING
, CREATE_STOPPED
*
*
* -
*
* DELETE_PENDING
, DELETE_IN_PROGRESS
, DELETE_FAILED
*
*
*
*
* @param status
* The status of the Explainability resource. States include:
*
* -
*
* ACTIVE
*
*
* -
*
* CREATE_PENDING
, CREATE_IN_PROGRESS
, CREATE_FAILED
*
*
* -
*
* CREATE_STOPPING
, CREATE_STOPPED
*
*
* -
*
* DELETE_PENDING
, DELETE_IN_PROGRESS
, DELETE_FAILED
*
*
*/
public void setStatus(String status) {
this.status = status;
}
/**
*
* The status of the Explainability resource. States include:
*
*
* -
*
* ACTIVE
*
*
* -
*
* CREATE_PENDING
, CREATE_IN_PROGRESS
, CREATE_FAILED
*
*
* -
*
* CREATE_STOPPING
, CREATE_STOPPED
*
*
* -
*
* DELETE_PENDING
, DELETE_IN_PROGRESS
, DELETE_FAILED
*
*
*
*
* @return The status of the Explainability resource. States include:
*
* -
*
* ACTIVE
*
*
* -
*
* CREATE_PENDING
, CREATE_IN_PROGRESS
, CREATE_FAILED
*
*
* -
*
* CREATE_STOPPING
, CREATE_STOPPED
*
*
* -
*
* DELETE_PENDING
, DELETE_IN_PROGRESS
, DELETE_FAILED
*
*
*/
public String getStatus() {
return this.status;
}
/**
*
* The status of the Explainability resource. States include:
*
*
* -
*
* ACTIVE
*
*
* -
*
* CREATE_PENDING
, CREATE_IN_PROGRESS
, CREATE_FAILED
*
*
* -
*
* CREATE_STOPPING
, CREATE_STOPPED
*
*
* -
*
* DELETE_PENDING
, DELETE_IN_PROGRESS
, DELETE_FAILED
*
*
*
*
* @param status
* The status of the Explainability resource. States include:
*
* -
*
* ACTIVE
*
*
* -
*
* CREATE_PENDING
, CREATE_IN_PROGRESS
, CREATE_FAILED
*
*
* -
*
* CREATE_STOPPING
, CREATE_STOPPED
*
*
* -
*
* DELETE_PENDING
, DELETE_IN_PROGRESS
, DELETE_FAILED
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withStatus(String status) {
setStatus(status);
return this;
}
/**
*
* When the Explainability resource was created.
*
*
* @param creationTime
* When the Explainability resource was created.
*/
public void setCreationTime(java.util.Date creationTime) {
this.creationTime = creationTime;
}
/**
*
* When the Explainability resource was created.
*
*
* @return When the Explainability resource was created.
*/
public java.util.Date getCreationTime() {
return this.creationTime;
}
/**
*
* When the Explainability resource was created.
*
*
* @param creationTime
* When the Explainability resource was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withCreationTime(java.util.Date creationTime) {
setCreationTime(creationTime);
return this;
}
/**
*
* The last time the resource was modified. The timestamp depends on the status of the job:
*
*
* -
*
* CREATE_PENDING
- The CreationTime
.
*
*
* -
*
* CREATE_IN_PROGRESS
- The current timestamp.
*
*
* -
*
* CREATE_STOPPING
- The current timestamp.
*
*
* -
*
* CREATE_STOPPED
- When the job stopped.
*
*
* -
*
* ACTIVE
or CREATE_FAILED
- When the job finished or failed.
*
*
*
*
* @param lastModificationTime
* The last time the resource was modified. The timestamp depends on the status of the job:
*
* -
*
* CREATE_PENDING
- The CreationTime
.
*
*
* -
*
* CREATE_IN_PROGRESS
- The current timestamp.
*
*
* -
*
* CREATE_STOPPING
- The current timestamp.
*
*
* -
*
* CREATE_STOPPED
- When the job stopped.
*
*
* -
*
* ACTIVE
or CREATE_FAILED
- When the job finished or failed.
*
*
*/
public void setLastModificationTime(java.util.Date lastModificationTime) {
this.lastModificationTime = lastModificationTime;
}
/**
*
* The last time the resource was modified. The timestamp depends on the status of the job:
*
*
* -
*
* CREATE_PENDING
- The CreationTime
.
*
*
* -
*
* CREATE_IN_PROGRESS
- The current timestamp.
*
*
* -
*
* CREATE_STOPPING
- The current timestamp.
*
*
* -
*
* CREATE_STOPPED
- When the job stopped.
*
*
* -
*
* ACTIVE
or CREATE_FAILED
- When the job finished or failed.
*
*
*
*
* @return The last time the resource was modified. The timestamp depends on the status of the job:
*
* -
*
* CREATE_PENDING
- The CreationTime
.
*
*
* -
*
* CREATE_IN_PROGRESS
- The current timestamp.
*
*
* -
*
* CREATE_STOPPING
- The current timestamp.
*
*
* -
*
* CREATE_STOPPED
- When the job stopped.
*
*
* -
*
* ACTIVE
or CREATE_FAILED
- When the job finished or failed.
*
*
*/
public java.util.Date getLastModificationTime() {
return this.lastModificationTime;
}
/**
*
* The last time the resource was modified. The timestamp depends on the status of the job:
*
*
* -
*
* CREATE_PENDING
- The CreationTime
.
*
*
* -
*
* CREATE_IN_PROGRESS
- The current timestamp.
*
*
* -
*
* CREATE_STOPPING
- The current timestamp.
*
*
* -
*
* CREATE_STOPPED
- When the job stopped.
*
*
* -
*
* ACTIVE
or CREATE_FAILED
- When the job finished or failed.
*
*
*
*
* @param lastModificationTime
* The last time the resource was modified. The timestamp depends on the status of the job:
*
* -
*
* CREATE_PENDING
- The CreationTime
.
*
*
* -
*
* CREATE_IN_PROGRESS
- The current timestamp.
*
*
* -
*
* CREATE_STOPPING
- The current timestamp.
*
*
* -
*
* CREATE_STOPPED
- When the job stopped.
*
*
* -
*
* ACTIVE
or CREATE_FAILED
- When the job finished or failed.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeExplainabilityResult withLastModificationTime(java.util.Date lastModificationTime) {
setLastModificationTime(lastModificationTime);
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 (getExplainabilityArn() != null)
sb.append("ExplainabilityArn: ").append(getExplainabilityArn()).append(",");
if (getExplainabilityName() != null)
sb.append("ExplainabilityName: ").append(getExplainabilityName()).append(",");
if (getResourceArn() != null)
sb.append("ResourceArn: ").append(getResourceArn()).append(",");
if (getExplainabilityConfig() != null)
sb.append("ExplainabilityConfig: ").append(getExplainabilityConfig()).append(",");
if (getEnableVisualization() != null)
sb.append("EnableVisualization: ").append(getEnableVisualization()).append(",");
if (getDataSource() != null)
sb.append("DataSource: ").append(getDataSource()).append(",");
if (getSchema() != null)
sb.append("Schema: ").append(getSchema()).append(",");
if (getStartDateTime() != null)
sb.append("StartDateTime: ").append(getStartDateTime()).append(",");
if (getEndDateTime() != null)
sb.append("EndDateTime: ").append(getEndDateTime()).append(",");
if (getEstimatedTimeRemainingInMinutes() != null)
sb.append("EstimatedTimeRemainingInMinutes: ").append(getEstimatedTimeRemainingInMinutes()).append(",");
if (getMessage() != null)
sb.append("Message: ").append(getMessage()).append(",");
if (getStatus() != null)
sb.append("Status: ").append(getStatus()).append(",");
if (getCreationTime() != null)
sb.append("CreationTime: ").append(getCreationTime()).append(",");
if (getLastModificationTime() != null)
sb.append("LastModificationTime: ").append(getLastModificationTime());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DescribeExplainabilityResult == false)
return false;
DescribeExplainabilityResult other = (DescribeExplainabilityResult) obj;
if (other.getExplainabilityArn() == null ^ this.getExplainabilityArn() == null)
return false;
if (other.getExplainabilityArn() != null && other.getExplainabilityArn().equals(this.getExplainabilityArn()) == false)
return false;
if (other.getExplainabilityName() == null ^ this.getExplainabilityName() == null)
return false;
if (other.getExplainabilityName() != null && other.getExplainabilityName().equals(this.getExplainabilityName()) == false)
return false;
if (other.getResourceArn() == null ^ this.getResourceArn() == null)
return false;
if (other.getResourceArn() != null && other.getResourceArn().equals(this.getResourceArn()) == false)
return false;
if (other.getExplainabilityConfig() == null ^ this.getExplainabilityConfig() == null)
return false;
if (other.getExplainabilityConfig() != null && other.getExplainabilityConfig().equals(this.getExplainabilityConfig()) == false)
return false;
if (other.getEnableVisualization() == null ^ this.getEnableVisualization() == null)
return false;
if (other.getEnableVisualization() != null && other.getEnableVisualization().equals(this.getEnableVisualization()) == false)
return false;
if (other.getDataSource() == null ^ this.getDataSource() == null)
return false;
if (other.getDataSource() != null && other.getDataSource().equals(this.getDataSource()) == false)
return false;
if (other.getSchema() == null ^ this.getSchema() == null)
return false;
if (other.getSchema() != null && other.getSchema().equals(this.getSchema()) == false)
return false;
if (other.getStartDateTime() == null ^ this.getStartDateTime() == null)
return false;
if (other.getStartDateTime() != null && other.getStartDateTime().equals(this.getStartDateTime()) == false)
return false;
if (other.getEndDateTime() == null ^ this.getEndDateTime() == null)
return false;
if (other.getEndDateTime() != null && other.getEndDateTime().equals(this.getEndDateTime()) == false)
return false;
if (other.getEstimatedTimeRemainingInMinutes() == null ^ this.getEstimatedTimeRemainingInMinutes() == null)
return false;
if (other.getEstimatedTimeRemainingInMinutes() != null
&& other.getEstimatedTimeRemainingInMinutes().equals(this.getEstimatedTimeRemainingInMinutes()) == false)
return false;
if (other.getMessage() == null ^ this.getMessage() == null)
return false;
if (other.getMessage() != null && other.getMessage().equals(this.getMessage()) == false)
return false;
if (other.getStatus() == null ^ this.getStatus() == null)
return false;
if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == 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.getLastModificationTime() == null ^ this.getLastModificationTime() == null)
return false;
if (other.getLastModificationTime() != null && other.getLastModificationTime().equals(this.getLastModificationTime()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getExplainabilityArn() == null) ? 0 : getExplainabilityArn().hashCode());
hashCode = prime * hashCode + ((getExplainabilityName() == null) ? 0 : getExplainabilityName().hashCode());
hashCode = prime * hashCode + ((getResourceArn() == null) ? 0 : getResourceArn().hashCode());
hashCode = prime * hashCode + ((getExplainabilityConfig() == null) ? 0 : getExplainabilityConfig().hashCode());
hashCode = prime * hashCode + ((getEnableVisualization() == null) ? 0 : getEnableVisualization().hashCode());
hashCode = prime * hashCode + ((getDataSource() == null) ? 0 : getDataSource().hashCode());
hashCode = prime * hashCode + ((getSchema() == null) ? 0 : getSchema().hashCode());
hashCode = prime * hashCode + ((getStartDateTime() == null) ? 0 : getStartDateTime().hashCode());
hashCode = prime * hashCode + ((getEndDateTime() == null) ? 0 : getEndDateTime().hashCode());
hashCode = prime * hashCode + ((getEstimatedTimeRemainingInMinutes() == null) ? 0 : getEstimatedTimeRemainingInMinutes().hashCode());
hashCode = prime * hashCode + ((getMessage() == null) ? 0 : getMessage().hashCode());
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode());
hashCode = prime * hashCode + ((getLastModificationTime() == null) ? 0 : getLastModificationTime().hashCode());
return hashCode;
}
@Override
public DescribeExplainabilityResult clone() {
try {
return (DescribeExplainabilityResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}