All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.importexport.model.CreateJobRequest Maven / Gradle / Ivy

/*
 * Copyright 2010-2014 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.importexport.model;

import java.io.Serializable;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * Container for the parameters to the {@link com.amazonaws.services.importexport.AmazonImportExport#createJob(CreateJobRequest) CreateJob operation}.
 * 

* This operation initiates the process of scheduling an upload or * download of your data. You include in the request a manifest that * describes the data transfer specifics. The response to the request * includes a job ID, which you can use in other operations, a signature * that you use to identify your storage device, and the address where * you should ship your storage device. *

* * @see com.amazonaws.services.importexport.AmazonImportExport#createJob(CreateJobRequest) */ public class CreateJobRequest extends AmazonWebServiceRequest implements Serializable { /** * Specifies whether the job to initiate is an import or export job. *

* Constraints:
* Allowed Values: Import, Export */ private String jobType; /** * The UTF-8 encoded text of the manifest file. */ private String manifest; /** * For internal use only. */ private String manifestAddendum; /** * Validate the manifest and parameter values in the request but do not * actually create a job. */ private Boolean validateOnly; /** * Specifies whether the job to initiate is an import or export job. *

* Constraints:
* Allowed Values: Import, Export * * @return Specifies whether the job to initiate is an import or export job. * * @see JobType */ public String getJobType() { return jobType; } /** * Specifies whether the job to initiate is an import or export job. *

* Constraints:
* Allowed Values: Import, Export * * @param jobType Specifies whether the job to initiate is an import or export job. * * @see JobType */ public void setJobType(String jobType) { this.jobType = jobType; } /** * Specifies whether the job to initiate is an import or export job. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Allowed Values: Import, Export * * @param jobType Specifies whether the job to initiate is an import or export job. * * @return A reference to this updated object so that method calls can be chained * together. * * @see JobType */ public CreateJobRequest withJobType(String jobType) { this.jobType = jobType; return this; } /** * Specifies whether the job to initiate is an import or export job. *

* Constraints:
* Allowed Values: Import, Export * * @param jobType Specifies whether the job to initiate is an import or export job. * * @see JobType */ public void setJobType(JobType jobType) { this.jobType = jobType.toString(); } /** * Specifies whether the job to initiate is an import or export job. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Allowed Values: Import, Export * * @param jobType Specifies whether the job to initiate is an import or export job. * * @return A reference to this updated object so that method calls can be chained * together. * * @see JobType */ public CreateJobRequest withJobType(JobType jobType) { this.jobType = jobType.toString(); return this; } /** * The UTF-8 encoded text of the manifest file. * * @return The UTF-8 encoded text of the manifest file. */ public String getManifest() { return manifest; } /** * The UTF-8 encoded text of the manifest file. * * @param manifest The UTF-8 encoded text of the manifest file. */ public void setManifest(String manifest) { this.manifest = manifest; } /** * The UTF-8 encoded text of the manifest file. *

* Returns a reference to this object so that method calls can be chained together. * * @param manifest The UTF-8 encoded text of the manifest file. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateJobRequest withManifest(String manifest) { this.manifest = manifest; return this; } /** * For internal use only. * * @return For internal use only. */ public String getManifestAddendum() { return manifestAddendum; } /** * For internal use only. * * @param manifestAddendum For internal use only. */ public void setManifestAddendum(String manifestAddendum) { this.manifestAddendum = manifestAddendum; } /** * For internal use only. *

* Returns a reference to this object so that method calls can be chained together. * * @param manifestAddendum For internal use only. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateJobRequest withManifestAddendum(String manifestAddendum) { this.manifestAddendum = manifestAddendum; return this; } /** * Validate the manifest and parameter values in the request but do not * actually create a job. * * @return Validate the manifest and parameter values in the request but do not * actually create a job. */ public Boolean isValidateOnly() { return validateOnly; } /** * Validate the manifest and parameter values in the request but do not * actually create a job. * * @param validateOnly Validate the manifest and parameter values in the request but do not * actually create a job. */ public void setValidateOnly(Boolean validateOnly) { this.validateOnly = validateOnly; } /** * Validate the manifest and parameter values in the request but do not * actually create a job. *

* Returns a reference to this object so that method calls can be chained together. * * @param validateOnly Validate the manifest and parameter values in the request but do not * actually create a job. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateJobRequest withValidateOnly(Boolean validateOnly) { this.validateOnly = validateOnly; return this; } /** * Validate the manifest and parameter values in the request but do not * actually create a job. * * @return Validate the manifest and parameter values in the request but do not * actually create a job. */ public Boolean getValidateOnly() { return validateOnly; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getJobType() != null) sb.append("JobType: " + getJobType() + ","); if (getManifest() != null) sb.append("Manifest: " + getManifest() + ","); if (getManifestAddendum() != null) sb.append("ManifestAddendum: " + getManifestAddendum() + ","); if (isValidateOnly() != null) sb.append("ValidateOnly: " + isValidateOnly() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getJobType() == null) ? 0 : getJobType().hashCode()); hashCode = prime * hashCode + ((getManifest() == null) ? 0 : getManifest().hashCode()); hashCode = prime * hashCode + ((getManifestAddendum() == null) ? 0 : getManifestAddendum().hashCode()); hashCode = prime * hashCode + ((isValidateOnly() == null) ? 0 : isValidateOnly().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateJobRequest == false) return false; CreateJobRequest other = (CreateJobRequest)obj; if (other.getJobType() == null ^ this.getJobType() == null) return false; if (other.getJobType() != null && other.getJobType().equals(this.getJobType()) == false) return false; if (other.getManifest() == null ^ this.getManifest() == null) return false; if (other.getManifest() != null && other.getManifest().equals(this.getManifest()) == false) return false; if (other.getManifestAddendum() == null ^ this.getManifestAddendum() == null) return false; if (other.getManifestAddendum() != null && other.getManifestAddendum().equals(this.getManifestAddendum()) == false) return false; if (other.isValidateOnly() == null ^ this.isValidateOnly() == null) return false; if (other.isValidateOnly() != null && other.isValidateOnly().equals(this.isValidateOnly()) == false) return false; return true; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy