/* * 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.simpleemailv2.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** *
* Represents a request to create an import job from a data source for a data destination. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateImportJobRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** ** The destination for the import job. *
*/ private ImportDestination importDestination; /** ** The data source for the import job. *
*/ private ImportDataSource importDataSource; /** ** The destination for the import job. *
* * @param importDestination * The destination for the import job. */ public void setImportDestination(ImportDestination importDestination) { this.importDestination = importDestination; } /** ** The destination for the import job. *
* * @return The destination for the import job. */ public ImportDestination getImportDestination() { return this.importDestination; } /** ** The destination for the import job. *
* * @param importDestination * The destination for the import job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateImportJobRequest withImportDestination(ImportDestination importDestination) { setImportDestination(importDestination); return this; } /** ** The data source for the import job. *
* * @param importDataSource * The data source for the import job. */ public void setImportDataSource(ImportDataSource importDataSource) { this.importDataSource = importDataSource; } /** ** The data source for the import job. *
* * @return The data source for the import job. */ public ImportDataSource getImportDataSource() { return this.importDataSource; } /** ** The data source for the import job. *
* * @param importDataSource * The data source for the import job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateImportJobRequest withImportDataSource(ImportDataSource importDataSource) { setImportDataSource(importDataSource); 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 (getImportDestination() != null) sb.append("ImportDestination: ").append(getImportDestination()).append(","); if (getImportDataSource() != null) sb.append("ImportDataSource: ").append(getImportDataSource()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateImportJobRequest == false) return false; CreateImportJobRequest other = (CreateImportJobRequest) obj; if (other.getImportDestination() == null ^ this.getImportDestination() == null) return false; if (other.getImportDestination() != null && other.getImportDestination().equals(this.getImportDestination()) == false) return false; if (other.getImportDataSource() == null ^ this.getImportDataSource() == null) return false; if (other.getImportDataSource() != null && other.getImportDataSource().equals(this.getImportDataSource()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getImportDestination() == null) ? 0 : getImportDestination().hashCode()); hashCode = prime * hashCode + ((getImportDataSource() == null) ? 0 : getImportDataSource().hashCode()); return hashCode; } @Override public CreateImportJobRequest clone() { return (CreateImportJobRequest) super.clone(); } }