* Identifier for an inference request. This will be the same as the InferenceId
specified in the
* input. Amazon SageMaker will generate an identifier for you if you do not specify one.
*
* The Amazon S3 URI where the inference response payload is stored. *
*/ private String outputLocation; /** ** The Amazon S3 URI where the inference failure response payload is stored. *
*/ private String failureLocation; /** *
* Identifier for an inference request. This will be the same as the InferenceId
specified in the
* input. Amazon SageMaker will generate an identifier for you if you do not specify one.
*
InferenceId
specified in
* the input. Amazon SageMaker will generate an identifier for you if you do not specify one.
*/
public void setInferenceId(String inferenceId) {
this.inferenceId = inferenceId;
}
/**
*
* Identifier for an inference request. This will be the same as the InferenceId
specified in the
* input. Amazon SageMaker will generate an identifier for you if you do not specify one.
*
InferenceId
specified in
* the input. Amazon SageMaker will generate an identifier for you if you do not specify one.
*/
public String getInferenceId() {
return this.inferenceId;
}
/**
*
* Identifier for an inference request. This will be the same as the InferenceId
specified in the
* input. Amazon SageMaker will generate an identifier for you if you do not specify one.
*
InferenceId
specified in
* the input. Amazon SageMaker will generate an identifier for you if you do not specify one.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InvokeEndpointAsyncResult withInferenceId(String inferenceId) {
setInferenceId(inferenceId);
return this;
}
/**
* * The Amazon S3 URI where the inference response payload is stored. *
* * @param outputLocation * The Amazon S3 URI where the inference response payload is stored. */ public void setOutputLocation(String outputLocation) { this.outputLocation = outputLocation; } /** ** The Amazon S3 URI where the inference response payload is stored. *
* * @return The Amazon S3 URI where the inference response payload is stored. */ public String getOutputLocation() { return this.outputLocation; } /** ** The Amazon S3 URI where the inference response payload is stored. *
* * @param outputLocation * The Amazon S3 URI where the inference response payload is stored. * @return Returns a reference to this object so that method calls can be chained together. */ public InvokeEndpointAsyncResult withOutputLocation(String outputLocation) { setOutputLocation(outputLocation); return this; } /** ** The Amazon S3 URI where the inference failure response payload is stored. *
* * @param failureLocation * The Amazon S3 URI where the inference failure response payload is stored. */ public void setFailureLocation(String failureLocation) { this.failureLocation = failureLocation; } /** ** The Amazon S3 URI where the inference failure response payload is stored. *
* * @return The Amazon S3 URI where the inference failure response payload is stored. */ public String getFailureLocation() { return this.failureLocation; } /** ** The Amazon S3 URI where the inference failure response payload is stored. *
* * @param failureLocation * The Amazon S3 URI where the inference failure response payload is stored. * @return Returns a reference to this object so that method calls can be chained together. */ public InvokeEndpointAsyncResult withFailureLocation(String failureLocation) { setFailureLocation(failureLocation); 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 (getInferenceId() != null) sb.append("InferenceId: ").append(getInferenceId()).append(","); if (getOutputLocation() != null) sb.append("OutputLocation: ").append(getOutputLocation()).append(","); if (getFailureLocation() != null) sb.append("FailureLocation: ").append(getFailureLocation()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof InvokeEndpointAsyncResult == false) return false; InvokeEndpointAsyncResult other = (InvokeEndpointAsyncResult) obj; if (other.getInferenceId() == null ^ this.getInferenceId() == null) return false; if (other.getInferenceId() != null && other.getInferenceId().equals(this.getInferenceId()) == false) return false; if (other.getOutputLocation() == null ^ this.getOutputLocation() == null) return false; if (other.getOutputLocation() != null && other.getOutputLocation().equals(this.getOutputLocation()) == false) return false; if (other.getFailureLocation() == null ^ this.getFailureLocation() == null) return false; if (other.getFailureLocation() != null && other.getFailureLocation().equals(this.getFailureLocation()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getInferenceId() == null) ? 0 : getInferenceId().hashCode()); hashCode = prime * hashCode + ((getOutputLocation() == null) ? 0 : getOutputLocation().hashCode()); hashCode = prime * hashCode + ((getFailureLocation() == null) ? 0 : getFailureLocation().hashCode()); return hashCode; } @Override public InvokeEndpointAsyncResult clone() { try { return (InvokeEndpointAsyncResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }