
com.amazonaws.services.sagemakergeospatial.model.GetVectorEnrichmentJobResult Maven / Gradle / Ivy
/*
* 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.sagemakergeospatial.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class GetVectorEnrichmentJobResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The Amazon Resource Name (ARN) of the Vector Enrichment job.
*
*/
private String arn;
/**
*
* The creation time.
*
*/
private java.util.Date creationTime;
/**
*
* The duration of the Vector Enrichment job, in seconds.
*
*/
private Integer durationInSeconds;
/**
*
* Details about the errors generated during the Vector Enrichment job.
*
*/
private VectorEnrichmentJobErrorDetails errorDetails;
/**
*
* The Amazon Resource Name (ARN) of the IAM role that you specified for the job.
*
*/
private String executionRoleArn;
/**
*
* Details about the errors generated during the ExportVectorEnrichmentJob.
*
*/
private VectorEnrichmentJobExportErrorDetails exportErrorDetails;
/**
*
* The export status of the Vector Enrichment job being initiated.
*
*/
private String exportStatus;
/**
*
* Input configuration information for the Vector Enrichment job.
*
*/
private VectorEnrichmentJobInputConfig inputConfig;
/**
*
* An object containing information about the job configuration.
*
*/
private VectorEnrichmentJobConfig jobConfig;
/**
*
* The Amazon Key Management Service (KMS) key ID for server-side encryption.
*
*/
private String kmsKeyId;
/**
*
* The name of the Vector Enrichment job.
*
*/
private String name;
/**
*
* The status of the initiated Vector Enrichment job.
*
*/
private String status;
/**
*
* Each tag consists of a key and a value.
*
*/
private java.util.Map tags;
/**
*
* The type of the Vector Enrichment job being initiated.
*
*/
private String type;
/**
*
* The Amazon Resource Name (ARN) of the Vector Enrichment job.
*
*
* @param arn
* The Amazon Resource Name (ARN) of the Vector Enrichment job.
*/
public void setArn(String arn) {
this.arn = arn;
}
/**
*
* The Amazon Resource Name (ARN) of the Vector Enrichment job.
*
*
* @return The Amazon Resource Name (ARN) of the Vector Enrichment job.
*/
public String getArn() {
return this.arn;
}
/**
*
* The Amazon Resource Name (ARN) of the Vector Enrichment job.
*
*
* @param arn
* The Amazon Resource Name (ARN) of the Vector Enrichment job.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVectorEnrichmentJobResult withArn(String arn) {
setArn(arn);
return this;
}
/**
*
* The creation time.
*
*
* @param creationTime
* The creation time.
*/
public void setCreationTime(java.util.Date creationTime) {
this.creationTime = creationTime;
}
/**
*
* The creation time.
*
*
* @return The creation time.
*/
public java.util.Date getCreationTime() {
return this.creationTime;
}
/**
*
* The creation time.
*
*
* @param creationTime
* The creation time.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVectorEnrichmentJobResult withCreationTime(java.util.Date creationTime) {
setCreationTime(creationTime);
return this;
}
/**
*
* The duration of the Vector Enrichment job, in seconds.
*
*
* @param durationInSeconds
* The duration of the Vector Enrichment job, in seconds.
*/
public void setDurationInSeconds(Integer durationInSeconds) {
this.durationInSeconds = durationInSeconds;
}
/**
*
* The duration of the Vector Enrichment job, in seconds.
*
*
* @return The duration of the Vector Enrichment job, in seconds.
*/
public Integer getDurationInSeconds() {
return this.durationInSeconds;
}
/**
*
* The duration of the Vector Enrichment job, in seconds.
*
*
* @param durationInSeconds
* The duration of the Vector Enrichment job, in seconds.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVectorEnrichmentJobResult withDurationInSeconds(Integer durationInSeconds) {
setDurationInSeconds(durationInSeconds);
return this;
}
/**
*
* Details about the errors generated during the Vector Enrichment job.
*
*
* @param errorDetails
* Details about the errors generated during the Vector Enrichment job.
*/
public void setErrorDetails(VectorEnrichmentJobErrorDetails errorDetails) {
this.errorDetails = errorDetails;
}
/**
*
* Details about the errors generated during the Vector Enrichment job.
*
*
* @return Details about the errors generated during the Vector Enrichment job.
*/
public VectorEnrichmentJobErrorDetails getErrorDetails() {
return this.errorDetails;
}
/**
*
* Details about the errors generated during the Vector Enrichment job.
*
*
* @param errorDetails
* Details about the errors generated during the Vector Enrichment job.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVectorEnrichmentJobResult withErrorDetails(VectorEnrichmentJobErrorDetails errorDetails) {
setErrorDetails(errorDetails);
return this;
}
/**
*
* The Amazon Resource Name (ARN) of the IAM role that you specified for the job.
*
*
* @param executionRoleArn
* The Amazon Resource Name (ARN) of the IAM role that you specified for the job.
*/
public void setExecutionRoleArn(String executionRoleArn) {
this.executionRoleArn = executionRoleArn;
}
/**
*
* The Amazon Resource Name (ARN) of the IAM role that you specified for the job.
*
*
* @return The Amazon Resource Name (ARN) of the IAM role that you specified for the job.
*/
public String getExecutionRoleArn() {
return this.executionRoleArn;
}
/**
*
* The Amazon Resource Name (ARN) of the IAM role that you specified for the job.
*
*
* @param executionRoleArn
* The Amazon Resource Name (ARN) of the IAM role that you specified for the job.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVectorEnrichmentJobResult withExecutionRoleArn(String executionRoleArn) {
setExecutionRoleArn(executionRoleArn);
return this;
}
/**
*
* Details about the errors generated during the ExportVectorEnrichmentJob.
*
*
* @param exportErrorDetails
* Details about the errors generated during the ExportVectorEnrichmentJob.
*/
public void setExportErrorDetails(VectorEnrichmentJobExportErrorDetails exportErrorDetails) {
this.exportErrorDetails = exportErrorDetails;
}
/**
*
* Details about the errors generated during the ExportVectorEnrichmentJob.
*
*
* @return Details about the errors generated during the ExportVectorEnrichmentJob.
*/
public VectorEnrichmentJobExportErrorDetails getExportErrorDetails() {
return this.exportErrorDetails;
}
/**
*
* Details about the errors generated during the ExportVectorEnrichmentJob.
*
*
* @param exportErrorDetails
* Details about the errors generated during the ExportVectorEnrichmentJob.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVectorEnrichmentJobResult withExportErrorDetails(VectorEnrichmentJobExportErrorDetails exportErrorDetails) {
setExportErrorDetails(exportErrorDetails);
return this;
}
/**
*
* The export status of the Vector Enrichment job being initiated.
*
*
* @param exportStatus
* The export status of the Vector Enrichment job being initiated.
* @see VectorEnrichmentJobExportStatus
*/
public void setExportStatus(String exportStatus) {
this.exportStatus = exportStatus;
}
/**
*
* The export status of the Vector Enrichment job being initiated.
*
*
* @return The export status of the Vector Enrichment job being initiated.
* @see VectorEnrichmentJobExportStatus
*/
public String getExportStatus() {
return this.exportStatus;
}
/**
*
* The export status of the Vector Enrichment job being initiated.
*
*
* @param exportStatus
* The export status of the Vector Enrichment job being initiated.
* @return Returns a reference to this object so that method calls can be chained together.
* @see VectorEnrichmentJobExportStatus
*/
public GetVectorEnrichmentJobResult withExportStatus(String exportStatus) {
setExportStatus(exportStatus);
return this;
}
/**
*
* The export status of the Vector Enrichment job being initiated.
*
*
* @param exportStatus
* The export status of the Vector Enrichment job being initiated.
* @return Returns a reference to this object so that method calls can be chained together.
* @see VectorEnrichmentJobExportStatus
*/
public GetVectorEnrichmentJobResult withExportStatus(VectorEnrichmentJobExportStatus exportStatus) {
this.exportStatus = exportStatus.toString();
return this;
}
/**
*
* Input configuration information for the Vector Enrichment job.
*
*
* @param inputConfig
* Input configuration information for the Vector Enrichment job.
*/
public void setInputConfig(VectorEnrichmentJobInputConfig inputConfig) {
this.inputConfig = inputConfig;
}
/**
*
* Input configuration information for the Vector Enrichment job.
*
*
* @return Input configuration information for the Vector Enrichment job.
*/
public VectorEnrichmentJobInputConfig getInputConfig() {
return this.inputConfig;
}
/**
*
* Input configuration information for the Vector Enrichment job.
*
*
* @param inputConfig
* Input configuration information for the Vector Enrichment job.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVectorEnrichmentJobResult withInputConfig(VectorEnrichmentJobInputConfig inputConfig) {
setInputConfig(inputConfig);
return this;
}
/**
*
* An object containing information about the job configuration.
*
*
* @param jobConfig
* An object containing information about the job configuration.
*/
public void setJobConfig(VectorEnrichmentJobConfig jobConfig) {
this.jobConfig = jobConfig;
}
/**
*
* An object containing information about the job configuration.
*
*
* @return An object containing information about the job configuration.
*/
public VectorEnrichmentJobConfig getJobConfig() {
return this.jobConfig;
}
/**
*
* An object containing information about the job configuration.
*
*
* @param jobConfig
* An object containing information about the job configuration.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVectorEnrichmentJobResult withJobConfig(VectorEnrichmentJobConfig jobConfig) {
setJobConfig(jobConfig);
return this;
}
/**
*
* The Amazon Key Management Service (KMS) key ID for server-side encryption.
*
*
* @param kmsKeyId
* The Amazon Key Management Service (KMS) key ID for server-side encryption.
*/
public void setKmsKeyId(String kmsKeyId) {
this.kmsKeyId = kmsKeyId;
}
/**
*
* The Amazon Key Management Service (KMS) key ID for server-side encryption.
*
*
* @return The Amazon Key Management Service (KMS) key ID for server-side encryption.
*/
public String getKmsKeyId() {
return this.kmsKeyId;
}
/**
*
* The Amazon Key Management Service (KMS) key ID for server-side encryption.
*
*
* @param kmsKeyId
* The Amazon Key Management Service (KMS) key ID for server-side encryption.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVectorEnrichmentJobResult withKmsKeyId(String kmsKeyId) {
setKmsKeyId(kmsKeyId);
return this;
}
/**
*
* The name of the Vector Enrichment job.
*
*
* @param name
* The name of the Vector Enrichment job.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The name of the Vector Enrichment job.
*
*
* @return The name of the Vector Enrichment job.
*/
public String getName() {
return this.name;
}
/**
*
* The name of the Vector Enrichment job.
*
*
* @param name
* The name of the Vector Enrichment job.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVectorEnrichmentJobResult withName(String name) {
setName(name);
return this;
}
/**
*
* The status of the initiated Vector Enrichment job.
*
*
* @param status
* The status of the initiated Vector Enrichment job.
* @see VectorEnrichmentJobStatus
*/
public void setStatus(String status) {
this.status = status;
}
/**
*
* The status of the initiated Vector Enrichment job.
*
*
* @return The status of the initiated Vector Enrichment job.
* @see VectorEnrichmentJobStatus
*/
public String getStatus() {
return this.status;
}
/**
*
* The status of the initiated Vector Enrichment job.
*
*
* @param status
* The status of the initiated Vector Enrichment job.
* @return Returns a reference to this object so that method calls can be chained together.
* @see VectorEnrichmentJobStatus
*/
public GetVectorEnrichmentJobResult withStatus(String status) {
setStatus(status);
return this;
}
/**
*
* The status of the initiated Vector Enrichment job.
*
*
* @param status
* The status of the initiated Vector Enrichment job.
* @return Returns a reference to this object so that method calls can be chained together.
* @see VectorEnrichmentJobStatus
*/
public GetVectorEnrichmentJobResult withStatus(VectorEnrichmentJobStatus status) {
this.status = status.toString();
return this;
}
/**
*
* Each tag consists of a key and a value.
*
*
* @return Each tag consists of a key and a value.
*/
public java.util.Map getTags() {
return tags;
}
/**
*
* Each tag consists of a key and a value.
*
*
* @param tags
* Each tag consists of a key and a value.
*/
public void setTags(java.util.Map tags) {
this.tags = tags;
}
/**
*
* Each tag consists of a key and a value.
*
*
* @param tags
* Each tag consists of a key and a value.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVectorEnrichmentJobResult withTags(java.util.Map tags) {
setTags(tags);
return this;
}
/**
* Add a single Tags entry
*
* @see GetVectorEnrichmentJobResult#withTags
* @returns a reference to this object so that method calls can be chained together.
*/
public GetVectorEnrichmentJobResult addTagsEntry(String key, String value) {
if (null == this.tags) {
this.tags = new java.util.HashMap();
}
if (this.tags.containsKey(key))
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
this.tags.put(key, value);
return this;
}
/**
* Removes all the entries added into Tags.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVectorEnrichmentJobResult clearTagsEntries() {
this.tags = null;
return this;
}
/**
*
* The type of the Vector Enrichment job being initiated.
*
*
* @param type
* The type of the Vector Enrichment job being initiated.
* @see VectorEnrichmentJobType
*/
public void setType(String type) {
this.type = type;
}
/**
*
* The type of the Vector Enrichment job being initiated.
*
*
* @return The type of the Vector Enrichment job being initiated.
* @see VectorEnrichmentJobType
*/
public String getType() {
return this.type;
}
/**
*
* The type of the Vector Enrichment job being initiated.
*
*
* @param type
* The type of the Vector Enrichment job being initiated.
* @return Returns a reference to this object so that method calls can be chained together.
* @see VectorEnrichmentJobType
*/
public GetVectorEnrichmentJobResult withType(String type) {
setType(type);
return this;
}
/**
*
* The type of the Vector Enrichment job being initiated.
*
*
* @param type
* The type of the Vector Enrichment job being initiated.
* @return Returns a reference to this object so that method calls can be chained together.
* @see VectorEnrichmentJobType
*/
public GetVectorEnrichmentJobResult withType(VectorEnrichmentJobType type) {
this.type = type.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 (getArn() != null)
sb.append("Arn: ").append(getArn()).append(",");
if (getCreationTime() != null)
sb.append("CreationTime: ").append(getCreationTime()).append(",");
if (getDurationInSeconds() != null)
sb.append("DurationInSeconds: ").append(getDurationInSeconds()).append(",");
if (getErrorDetails() != null)
sb.append("ErrorDetails: ").append(getErrorDetails()).append(",");
if (getExecutionRoleArn() != null)
sb.append("ExecutionRoleArn: ").append(getExecutionRoleArn()).append(",");
if (getExportErrorDetails() != null)
sb.append("ExportErrorDetails: ").append(getExportErrorDetails()).append(",");
if (getExportStatus() != null)
sb.append("ExportStatus: ").append(getExportStatus()).append(",");
if (getInputConfig() != null)
sb.append("InputConfig: ").append(getInputConfig()).append(",");
if (getJobConfig() != null)
sb.append("JobConfig: ").append(getJobConfig()).append(",");
if (getKmsKeyId() != null)
sb.append("KmsKeyId: ").append(getKmsKeyId()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getStatus() != null)
sb.append("Status: ").append(getStatus()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags()).append(",");
if (getType() != null)
sb.append("Type: ").append(getType());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof GetVectorEnrichmentJobResult == false)
return false;
GetVectorEnrichmentJobResult other = (GetVectorEnrichmentJobResult) obj;
if (other.getArn() == null ^ this.getArn() == null)
return false;
if (other.getArn() != null && other.getArn().equals(this.getArn()) == 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.getDurationInSeconds() == null ^ this.getDurationInSeconds() == null)
return false;
if (other.getDurationInSeconds() != null && other.getDurationInSeconds().equals(this.getDurationInSeconds()) == false)
return false;
if (other.getErrorDetails() == null ^ this.getErrorDetails() == null)
return false;
if (other.getErrorDetails() != null && other.getErrorDetails().equals(this.getErrorDetails()) == false)
return false;
if (other.getExecutionRoleArn() == null ^ this.getExecutionRoleArn() == null)
return false;
if (other.getExecutionRoleArn() != null && other.getExecutionRoleArn().equals(this.getExecutionRoleArn()) == false)
return false;
if (other.getExportErrorDetails() == null ^ this.getExportErrorDetails() == null)
return false;
if (other.getExportErrorDetails() != null && other.getExportErrorDetails().equals(this.getExportErrorDetails()) == false)
return false;
if (other.getExportStatus() == null ^ this.getExportStatus() == null)
return false;
if (other.getExportStatus() != null && other.getExportStatus().equals(this.getExportStatus()) == false)
return false;
if (other.getInputConfig() == null ^ this.getInputConfig() == null)
return false;
if (other.getInputConfig() != null && other.getInputConfig().equals(this.getInputConfig()) == false)
return false;
if (other.getJobConfig() == null ^ this.getJobConfig() == null)
return false;
if (other.getJobConfig() != null && other.getJobConfig().equals(this.getJobConfig()) == false)
return false;
if (other.getKmsKeyId() == null ^ this.getKmsKeyId() == null)
return false;
if (other.getKmsKeyId() != null && other.getKmsKeyId().equals(this.getKmsKeyId()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == 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.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
if (other.getType() == null ^ this.getType() == null)
return false;
if (other.getType() != null && other.getType().equals(this.getType()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode());
hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode());
hashCode = prime * hashCode + ((getDurationInSeconds() == null) ? 0 : getDurationInSeconds().hashCode());
hashCode = prime * hashCode + ((getErrorDetails() == null) ? 0 : getErrorDetails().hashCode());
hashCode = prime * hashCode + ((getExecutionRoleArn() == null) ? 0 : getExecutionRoleArn().hashCode());
hashCode = prime * hashCode + ((getExportErrorDetails() == null) ? 0 : getExportErrorDetails().hashCode());
hashCode = prime * hashCode + ((getExportStatus() == null) ? 0 : getExportStatus().hashCode());
hashCode = prime * hashCode + ((getInputConfig() == null) ? 0 : getInputConfig().hashCode());
hashCode = prime * hashCode + ((getJobConfig() == null) ? 0 : getJobConfig().hashCode());
hashCode = prime * hashCode + ((getKmsKeyId() == null) ? 0 : getKmsKeyId().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode());
return hashCode;
}
@Override
public GetVectorEnrichmentJobResult clone() {
try {
return (GetVectorEnrichmentJobResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}