/* * 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.gluedatabrew.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateRecipeJobRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The name of the dataset that this job processes. *

*/ private String datasetName; /** *

* The Amazon Resource Name (ARN) of an encryption key that is used to protect the job. *

*/ private String encryptionKeyArn; /** *

* The encryption mode for the job, which can be one of the following: *

* */ private String encryptionMode; /** *

* A unique name for the job. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space. *

*/ private String name; /** *

* Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log * stream for each job run. *

*/ private String logSubscription; /** *

* The maximum number of nodes that DataBrew can consume when the job processes data. *

*/ private Integer maxCapacity; /** *

* The maximum number of times to retry the job after a job run fails. *

*/ private Integer maxRetries; /** *

* One or more artifacts that represent the output from running the job. *

*/ private java.util.List outputs; /** *

* One or more artifacts that represent the Glue Data Catalog output from running the job. *

*/ private java.util.List dataCatalogOutputs; /** *

* Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job * to write to. *

*/ private java.util.List databaseOutputs; /** *

* Either the name of an existing project, or a combination of a recipe and a dataset to associate with the recipe. *

*/ private String projectName; private RecipeReference recipeReference; /** *

* The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs * the job. *

*/ private String roleArn; /** *

* Metadata tags to apply to this job. *

*/ private java.util.Map tags; /** *

* The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of * TIMEOUT. *

*/ private Integer timeout; /** *

* The name of the dataset that this job processes. *

* * @param datasetName * The name of the dataset that this job processes. */ public void setDatasetName(String datasetName) { this.datasetName = datasetName; } /** *

* The name of the dataset that this job processes. *

* * @return The name of the dataset that this job processes. */ public String getDatasetName() { return this.datasetName; } /** *

* The name of the dataset that this job processes. *

* * @param datasetName * The name of the dataset that this job processes. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withDatasetName(String datasetName) { setDatasetName(datasetName); return this; } /** *

* The Amazon Resource Name (ARN) of an encryption key that is used to protect the job. *

* * @param encryptionKeyArn * The Amazon Resource Name (ARN) of an encryption key that is used to protect the job. */ public void setEncryptionKeyArn(String encryptionKeyArn) { this.encryptionKeyArn = encryptionKeyArn; } /** *

* The Amazon Resource Name (ARN) of an encryption key that is used to protect the job. *

* * @return The Amazon Resource Name (ARN) of an encryption key that is used to protect the job. */ public String getEncryptionKeyArn() { return this.encryptionKeyArn; } /** *

* The Amazon Resource Name (ARN) of an encryption key that is used to protect the job. *

* * @param encryptionKeyArn * The Amazon Resource Name (ARN) of an encryption key that is used to protect the job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withEncryptionKeyArn(String encryptionKeyArn) { setEncryptionKeyArn(encryptionKeyArn); return this; } /** *

* The encryption mode for the job, which can be one of the following: *

*
    *
  • *

    * SSE-KMS - Server-side encryption with keys managed by KMS. *

    *
  • *
  • *

    * SSE-S3 - Server-side encryption with keys managed by Amazon S3. *

    *
  • *
* * @param encryptionMode * The encryption mode for the job, which can be one of the following:

*
    *
  • *

    * SSE-KMS - Server-side encryption with keys managed by KMS. *

    *
  • *
  • *

    * SSE-S3 - Server-side encryption with keys managed by Amazon S3. *

    *
  • * @see EncryptionMode */ public void setEncryptionMode(String encryptionMode) { this.encryptionMode = encryptionMode; } /** *

    * The encryption mode for the job, which can be one of the following: *

    *
      *
    • *

      * SSE-KMS - Server-side encryption with keys managed by KMS. *

      *
    • *
    • *

      * SSE-S3 - Server-side encryption with keys managed by Amazon S3. *

      *
    • *
    * * @return The encryption mode for the job, which can be one of the following:

    *
      *
    • *

      * SSE-KMS - Server-side encryption with keys managed by KMS. *

      *
    • *
    • *

      * SSE-S3 - Server-side encryption with keys managed by Amazon S3. *

      *
    • * @see EncryptionMode */ public String getEncryptionMode() { return this.encryptionMode; } /** *

      * The encryption mode for the job, which can be one of the following: *

      *
        *
      • *

        * SSE-KMS - Server-side encryption with keys managed by KMS. *

        *
      • *
      • *

        * SSE-S3 - Server-side encryption with keys managed by Amazon S3. *

        *
      • *
      * * @param encryptionMode * The encryption mode for the job, which can be one of the following:

      *
        *
      • *

        * SSE-KMS - Server-side encryption with keys managed by KMS. *

        *
      • *
      • *

        * SSE-S3 - Server-side encryption with keys managed by Amazon S3. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. * @see EncryptionMode */ public CreateRecipeJobRequest withEncryptionMode(String encryptionMode) { setEncryptionMode(encryptionMode); return this; } /** *

        * The encryption mode for the job, which can be one of the following: *

        *
          *
        • *

          * SSE-KMS - Server-side encryption with keys managed by KMS. *

          *
        • *
        • *

          * SSE-S3 - Server-side encryption with keys managed by Amazon S3. *

          *
        • *
        * * @param encryptionMode * The encryption mode for the job, which can be one of the following:

        *
          *
        • *

          * SSE-KMS - Server-side encryption with keys managed by KMS. *

          *
        • *
        • *

          * SSE-S3 - Server-side encryption with keys managed by Amazon S3. *

          *
        • * @return Returns a reference to this object so that method calls can be chained together. * @see EncryptionMode */ public CreateRecipeJobRequest withEncryptionMode(EncryptionMode encryptionMode) { this.encryptionMode = encryptionMode.toString(); return this; } /** *

          * A unique name for the job. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space. *

          * * @param name * A unique name for the job. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and * space. */ public void setName(String name) { this.name = name; } /** *

          * A unique name for the job. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space. *

          * * @return A unique name for the job. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and * space. */ public String getName() { return this.name; } /** *

          * A unique name for the job. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space. *

          * * @param name * A unique name for the job. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and * space. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withName(String name) { setName(name); return this; } /** *

          * Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log * stream for each job run. *

          * * @param logSubscription * Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one * log stream for each job run. * @see LogSubscription */ public void setLogSubscription(String logSubscription) { this.logSubscription = logSubscription; } /** *

          * Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log * stream for each job run. *

          * * @return Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one * log stream for each job run. * @see LogSubscription */ public String getLogSubscription() { return this.logSubscription; } /** *

          * Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log * stream for each job run. *

          * * @param logSubscription * Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one * log stream for each job run. * @return Returns a reference to this object so that method calls can be chained together. * @see LogSubscription */ public CreateRecipeJobRequest withLogSubscription(String logSubscription) { setLogSubscription(logSubscription); return this; } /** *

          * Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log * stream for each job run. *

          * * @param logSubscription * Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one * log stream for each job run. * @return Returns a reference to this object so that method calls can be chained together. * @see LogSubscription */ public CreateRecipeJobRequest withLogSubscription(LogSubscription logSubscription) { this.logSubscription = logSubscription.toString(); return this; } /** *

          * The maximum number of nodes that DataBrew can consume when the job processes data. *

          * * @param maxCapacity * The maximum number of nodes that DataBrew can consume when the job processes data. */ public void setMaxCapacity(Integer maxCapacity) { this.maxCapacity = maxCapacity; } /** *

          * The maximum number of nodes that DataBrew can consume when the job processes data. *

          * * @return The maximum number of nodes that DataBrew can consume when the job processes data. */ public Integer getMaxCapacity() { return this.maxCapacity; } /** *

          * The maximum number of nodes that DataBrew can consume when the job processes data. *

          * * @param maxCapacity * The maximum number of nodes that DataBrew can consume when the job processes data. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withMaxCapacity(Integer maxCapacity) { setMaxCapacity(maxCapacity); return this; } /** *

          * The maximum number of times to retry the job after a job run fails. *

          * * @param maxRetries * The maximum number of times to retry the job after a job run fails. */ public void setMaxRetries(Integer maxRetries) { this.maxRetries = maxRetries; } /** *

          * The maximum number of times to retry the job after a job run fails. *

          * * @return The maximum number of times to retry the job after a job run fails. */ public Integer getMaxRetries() { return this.maxRetries; } /** *

          * The maximum number of times to retry the job after a job run fails. *

          * * @param maxRetries * The maximum number of times to retry the job after a job run fails. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withMaxRetries(Integer maxRetries) { setMaxRetries(maxRetries); return this; } /** *

          * One or more artifacts that represent the output from running the job. *

          * * @return One or more artifacts that represent the output from running the job. */ public java.util.List getOutputs() { return outputs; } /** *

          * One or more artifacts that represent the output from running the job. *

          * * @param outputs * One or more artifacts that represent the output from running the job. */ public void setOutputs(java.util.Collection outputs) { if (outputs == null) { this.outputs = null; return; } this.outputs = new java.util.ArrayList(outputs); } /** *

          * One or more artifacts that represent the output from running the job. *

          *

          * NOTE: This method appends the values to the existing list (if any). Use * {@link #setOutputs(java.util.Collection)} or {@link #withOutputs(java.util.Collection)} if you want to override * the existing values. *

          * * @param outputs * One or more artifacts that represent the output from running the job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withOutputs(Output... outputs) { if (this.outputs == null) { setOutputs(new java.util.ArrayList(outputs.length)); } for (Output ele : outputs) { this.outputs.add(ele); } return this; } /** *

          * One or more artifacts that represent the output from running the job. *

          * * @param outputs * One or more artifacts that represent the output from running the job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withOutputs(java.util.Collection outputs) { setOutputs(outputs); return this; } /** *

          * One or more artifacts that represent the Glue Data Catalog output from running the job. *

          * * @return One or more artifacts that represent the Glue Data Catalog output from running the job. */ public java.util.List getDataCatalogOutputs() { return dataCatalogOutputs; } /** *

          * One or more artifacts that represent the Glue Data Catalog output from running the job. *

          * * @param dataCatalogOutputs * One or more artifacts that represent the Glue Data Catalog output from running the job. */ public void setDataCatalogOutputs(java.util.Collection dataCatalogOutputs) { if (dataCatalogOutputs == null) { this.dataCatalogOutputs = null; return; } this.dataCatalogOutputs = new java.util.ArrayList(dataCatalogOutputs); } /** *

          * One or more artifacts that represent the Glue Data Catalog output from running the job. *

          *

          * NOTE: This method appends the values to the existing list (if any). Use * {@link #setDataCatalogOutputs(java.util.Collection)} or {@link #withDataCatalogOutputs(java.util.Collection)} if * you want to override the existing values. *

          * * @param dataCatalogOutputs * One or more artifacts that represent the Glue Data Catalog output from running the job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withDataCatalogOutputs(DataCatalogOutput... dataCatalogOutputs) { if (this.dataCatalogOutputs == null) { setDataCatalogOutputs(new java.util.ArrayList(dataCatalogOutputs.length)); } for (DataCatalogOutput ele : dataCatalogOutputs) { this.dataCatalogOutputs.add(ele); } return this; } /** *

          * One or more artifacts that represent the Glue Data Catalog output from running the job. *

          * * @param dataCatalogOutputs * One or more artifacts that represent the Glue Data Catalog output from running the job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withDataCatalogOutputs(java.util.Collection dataCatalogOutputs) { setDataCatalogOutputs(dataCatalogOutputs); return this; } /** *

          * Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job * to write to. *

          * * @return Represents a list of JDBC database output objects which defines the output destination for a DataBrew * recipe job to write to. */ public java.util.List getDatabaseOutputs() { return databaseOutputs; } /** *

          * Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job * to write to. *

          * * @param databaseOutputs * Represents a list of JDBC database output objects which defines the output destination for a DataBrew * recipe job to write to. */ public void setDatabaseOutputs(java.util.Collection databaseOutputs) { if (databaseOutputs == null) { this.databaseOutputs = null; return; } this.databaseOutputs = new java.util.ArrayList(databaseOutputs); } /** *

          * Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job * to write to. *

          *

          * NOTE: This method appends the values to the existing list (if any). Use * {@link #setDatabaseOutputs(java.util.Collection)} or {@link #withDatabaseOutputs(java.util.Collection)} if you * want to override the existing values. *

          * * @param databaseOutputs * Represents a list of JDBC database output objects which defines the output destination for a DataBrew * recipe job to write to. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withDatabaseOutputs(DatabaseOutput... databaseOutputs) { if (this.databaseOutputs == null) { setDatabaseOutputs(new java.util.ArrayList(databaseOutputs.length)); } for (DatabaseOutput ele : databaseOutputs) { this.databaseOutputs.add(ele); } return this; } /** *

          * Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job * to write to. *

          * * @param databaseOutputs * Represents a list of JDBC database output objects which defines the output destination for a DataBrew * recipe job to write to. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withDatabaseOutputs(java.util.Collection databaseOutputs) { setDatabaseOutputs(databaseOutputs); return this; } /** *

          * Either the name of an existing project, or a combination of a recipe and a dataset to associate with the recipe. *

          * * @param projectName * Either the name of an existing project, or a combination of a recipe and a dataset to associate with the * recipe. */ public void setProjectName(String projectName) { this.projectName = projectName; } /** *

          * Either the name of an existing project, or a combination of a recipe and a dataset to associate with the recipe. *

          * * @return Either the name of an existing project, or a combination of a recipe and a dataset to associate with the * recipe. */ public String getProjectName() { return this.projectName; } /** *

          * Either the name of an existing project, or a combination of a recipe and a dataset to associate with the recipe. *

          * * @param projectName * Either the name of an existing project, or a combination of a recipe and a dataset to associate with the * recipe. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withProjectName(String projectName) { setProjectName(projectName); return this; } /** * @param recipeReference */ public void setRecipeReference(RecipeReference recipeReference) { this.recipeReference = recipeReference; } /** * @return */ public RecipeReference getRecipeReference() { return this.recipeReference; } /** * @param recipeReference * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withRecipeReference(RecipeReference recipeReference) { setRecipeReference(recipeReference); return this; } /** *

          * The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs * the job. *

          * * @param roleArn * The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when * DataBrew runs the job. */ public void setRoleArn(String roleArn) { this.roleArn = roleArn; } /** *

          * The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs * the job. *

          * * @return The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when * DataBrew runs the job. */ public String getRoleArn() { return this.roleArn; } /** *

          * The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs * the job. *

          * * @param roleArn * The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when * DataBrew runs the job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** *

          * Metadata tags to apply to this job. *

          * * @return Metadata tags to apply to this job. */ public java.util.Map getTags() { return tags; } /** *

          * Metadata tags to apply to this job. *

          * * @param tags * Metadata tags to apply to this job. */ public void setTags(java.util.Map tags) { this.tags = tags; } /** *

          * Metadata tags to apply to this job. *

          * * @param tags * Metadata tags to apply to this job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withTags(java.util.Map tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see CreateRecipeJobRequest#withTags * @returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest 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 CreateRecipeJobRequest clearTagsEntries() { this.tags = null; return this; } /** *

          * The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of * TIMEOUT. *

          * * @param timeout * The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a * status of TIMEOUT. */ public void setTimeout(Integer timeout) { this.timeout = timeout; } /** *

          * The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of * TIMEOUT. *

          * * @return The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a * status of TIMEOUT. */ public Integer getTimeout() { return this.timeout; } /** *

          * The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of * TIMEOUT. *

          * * @param timeout * The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a * status of TIMEOUT. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecipeJobRequest withTimeout(Integer timeout) { setTimeout(timeout); 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 (getDatasetName() != null) sb.append("DatasetName: ").append(getDatasetName()).append(","); if (getEncryptionKeyArn() != null) sb.append("EncryptionKeyArn: ").append(getEncryptionKeyArn()).append(","); if (getEncryptionMode() != null) sb.append("EncryptionMode: ").append(getEncryptionMode()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getLogSubscription() != null) sb.append("LogSubscription: ").append(getLogSubscription()).append(","); if (getMaxCapacity() != null) sb.append("MaxCapacity: ").append(getMaxCapacity()).append(","); if (getMaxRetries() != null) sb.append("MaxRetries: ").append(getMaxRetries()).append(","); if (getOutputs() != null) sb.append("Outputs: ").append(getOutputs()).append(","); if (getDataCatalogOutputs() != null) sb.append("DataCatalogOutputs: ").append(getDataCatalogOutputs()).append(","); if (getDatabaseOutputs() != null) sb.append("DatabaseOutputs: ").append(getDatabaseOutputs()).append(","); if (getProjectName() != null) sb.append("ProjectName: ").append(getProjectName()).append(","); if (getRecipeReference() != null) sb.append("RecipeReference: ").append(getRecipeReference()).append(","); if (getRoleArn() != null) sb.append("RoleArn: ").append(getRoleArn()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getTimeout() != null) sb.append("Timeout: ").append(getTimeout()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateRecipeJobRequest == false) return false; CreateRecipeJobRequest other = (CreateRecipeJobRequest) obj; if (other.getDatasetName() == null ^ this.getDatasetName() == null) return false; if (other.getDatasetName() != null && other.getDatasetName().equals(this.getDatasetName()) == false) return false; if (other.getEncryptionKeyArn() == null ^ this.getEncryptionKeyArn() == null) return false; if (other.getEncryptionKeyArn() != null && other.getEncryptionKeyArn().equals(this.getEncryptionKeyArn()) == false) return false; if (other.getEncryptionMode() == null ^ this.getEncryptionMode() == null) return false; if (other.getEncryptionMode() != null && other.getEncryptionMode().equals(this.getEncryptionMode()) == 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.getLogSubscription() == null ^ this.getLogSubscription() == null) return false; if (other.getLogSubscription() != null && other.getLogSubscription().equals(this.getLogSubscription()) == false) return false; if (other.getMaxCapacity() == null ^ this.getMaxCapacity() == null) return false; if (other.getMaxCapacity() != null && other.getMaxCapacity().equals(this.getMaxCapacity()) == false) return false; if (other.getMaxRetries() == null ^ this.getMaxRetries() == null) return false; if (other.getMaxRetries() != null && other.getMaxRetries().equals(this.getMaxRetries()) == false) return false; if (other.getOutputs() == null ^ this.getOutputs() == null) return false; if (other.getOutputs() != null && other.getOutputs().equals(this.getOutputs()) == false) return false; if (other.getDataCatalogOutputs() == null ^ this.getDataCatalogOutputs() == null) return false; if (other.getDataCatalogOutputs() != null && other.getDataCatalogOutputs().equals(this.getDataCatalogOutputs()) == false) return false; if (other.getDatabaseOutputs() == null ^ this.getDatabaseOutputs() == null) return false; if (other.getDatabaseOutputs() != null && other.getDatabaseOutputs().equals(this.getDatabaseOutputs()) == false) return false; if (other.getProjectName() == null ^ this.getProjectName() == null) return false; if (other.getProjectName() != null && other.getProjectName().equals(this.getProjectName()) == false) return false; if (other.getRecipeReference() == null ^ this.getRecipeReference() == null) return false; if (other.getRecipeReference() != null && other.getRecipeReference().equals(this.getRecipeReference()) == false) return false; if (other.getRoleArn() == null ^ this.getRoleArn() == null) return false; if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == 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.getTimeout() == null ^ this.getTimeout() == null) return false; if (other.getTimeout() != null && other.getTimeout().equals(this.getTimeout()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDatasetName() == null) ? 0 : getDatasetName().hashCode()); hashCode = prime * hashCode + ((getEncryptionKeyArn() == null) ? 0 : getEncryptionKeyArn().hashCode()); hashCode = prime * hashCode + ((getEncryptionMode() == null) ? 0 : getEncryptionMode().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getLogSubscription() == null) ? 0 : getLogSubscription().hashCode()); hashCode = prime * hashCode + ((getMaxCapacity() == null) ? 0 : getMaxCapacity().hashCode()); hashCode = prime * hashCode + ((getMaxRetries() == null) ? 0 : getMaxRetries().hashCode()); hashCode = prime * hashCode + ((getOutputs() == null) ? 0 : getOutputs().hashCode()); hashCode = prime * hashCode + ((getDataCatalogOutputs() == null) ? 0 : getDataCatalogOutputs().hashCode()); hashCode = prime * hashCode + ((getDatabaseOutputs() == null) ? 0 : getDatabaseOutputs().hashCode()); hashCode = prime * hashCode + ((getProjectName() == null) ? 0 : getProjectName().hashCode()); hashCode = prime * hashCode + ((getRecipeReference() == null) ? 0 : getRecipeReference().hashCode()); hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getTimeout() == null) ? 0 : getTimeout().hashCode()); return hashCode; } @Override public CreateRecipeJobRequest clone() { return (CreateRecipeJobRequest) super.clone(); } }