/* * 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 <a href="http://docs.aws.amazon.com/goto/WebAPI/databrew-2017-07-25/CreateProfileJob" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateProfileJobRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** * <p> * The name of the dataset that this job is to act upon. * </p> */ private String datasetName; /** * <p> * The Amazon Resource Name (ARN) of an encryption key that is used to protect the job. * </p> */ private String encryptionKeyArn; /** * <p> * The encryption mode for the job, which can be one of the following: * </p> * <ul> * <li> * <p> * <code>SSE-KMS</code> - <code>SSE-KMS</code> - Server-side encryption with KMS-managed keys. * </p> * </li> * <li> * <p> * <code>SSE-S3</code> - Server-side encryption with keys managed by Amazon S3. * </p> * </li> * </ul> */ private String encryptionMode; /** * <p> * The name of the job to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and * space. * </p> */ private String name; /** * <p> * Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log * stream for each job run. * </p> */ private String logSubscription; /** * <p> * The maximum number of nodes that DataBrew can use when the job processes data. * </p> */ private Integer maxCapacity; /** * <p> * The maximum number of times to retry the job after a job run fails. * </p> */ private Integer maxRetries; private S3Location outputLocation; /** * <p> * Configuration for profile jobs. Used to select columns, do evaluations, and override default parameters of * evaluations. When configuration is null, the profile job will run with default settings. * </p> */ private ProfileConfiguration configuration; /** * <p> * List of validation configurations that are applied to the profile job. * </p> */ private java.util.List<ValidationConfiguration> validationConfigurations; /** * <p> * The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs * the job. * </p> */ private String roleArn; /** * <p> * Metadata tags to apply to this job. * </p> */ private java.util.Map<String, String> tags; /** * <p> * The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of * <code>TIMEOUT</code>. * </p> */ private Integer timeout; /** * <p> * Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be * executed. If a JobSample value is not provided, the default value will be used. The default value is CUSTOM_ROWS * for the mode parameter and 20000 for the size parameter. * </p> */ private JobSample jobSample; /** * <p> * The name of the dataset that this job is to act upon. * </p> * * @param datasetName * The name of the dataset that this job is to act upon. */ public void setDatasetName(String datasetName) { this.datasetName = datasetName; } /** * <p> * The name of the dataset that this job is to act upon. * </p> * * @return The name of the dataset that this job is to act upon. */ public String getDatasetName() { return this.datasetName; } /** * <p> * The name of the dataset that this job is to act upon. * </p> * * @param datasetName * The name of the dataset that this job is to act upon. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateProfileJobRequest withDatasetName(String datasetName) { setDatasetName(datasetName); return this; } /** * <p> * The Amazon Resource Name (ARN) of an encryption key that is used to protect the job. * </p> * * @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; } /** * <p> * The Amazon Resource Name (ARN) of an encryption key that is used to protect the job. * </p> * * @return The Amazon Resource Name (ARN) of an encryption key that is used to protect the job. */ public String getEncryptionKeyArn() { return this.encryptionKeyArn; } /** * <p> * The Amazon Resource Name (ARN) of an encryption key that is used to protect the job. * </p> * * @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 CreateProfileJobRequest withEncryptionKeyArn(String encryptionKeyArn) { setEncryptionKeyArn(encryptionKeyArn); return this; } /** * <p> * The encryption mode for the job, which can be one of the following: * </p> * <ul> * <li> * <p> * <code>SSE-KMS</code> - <code>SSE-KMS</code> - Server-side encryption with KMS-managed keys. * </p> * </li> * <li> * <p> * <code>SSE-S3</code> - Server-side encryption with keys managed by Amazon S3. * </p> * </li> * </ul> * * @param encryptionMode * The encryption mode for the job, which can be one of the following:</p> * <ul> * <li> * <p> * <code>SSE-KMS</code> - <code>SSE-KMS</code> - Server-side encryption with KMS-managed keys. * </p> * </li> * <li> * <p> * <code>SSE-S3</code> - Server-side encryption with keys managed by Amazon S3. * </p> * </li> * @see EncryptionMode */ public void setEncryptionMode(String encryptionMode) { this.encryptionMode = encryptionMode; } /** * <p> * The encryption mode for the job, which can be one of the following: * </p> * <ul> * <li> * <p> * <code>SSE-KMS</code> - <code>SSE-KMS</code> - Server-side encryption with KMS-managed keys. * </p> * </li> * <li> * <p> * <code>SSE-S3</code> - Server-side encryption with keys managed by Amazon S3. * </p> * </li> * </ul> * * @return The encryption mode for the job, which can be one of the following:</p> * <ul> * <li> * <p> * <code>SSE-KMS</code> - <code>SSE-KMS</code> - Server-side encryption with KMS-managed keys. * </p> * </li> * <li> * <p> * <code>SSE-S3</code> - Server-side encryption with keys managed by Amazon S3. * </p> * </li> * @see EncryptionMode */ public String getEncryptionMode() { return this.encryptionMode; } /** * <p> * The encryption mode for the job, which can be one of the following: * </p> * <ul> * <li> * <p> * <code>SSE-KMS</code> - <code>SSE-KMS</code> - Server-side encryption with KMS-managed keys. * </p> * </li> * <li> * <p> * <code>SSE-S3</code> - Server-side encryption with keys managed by Amazon S3. * </p> * </li> * </ul> * * @param encryptionMode * The encryption mode for the job, which can be one of the following:</p> * <ul> * <li> * <p> * <code>SSE-KMS</code> - <code>SSE-KMS</code> - Server-side encryption with KMS-managed keys. * </p> * </li> * <li> * <p> * <code>SSE-S3</code> - Server-side encryption with keys managed by Amazon S3. * </p> * </li> * @return Returns a reference to this object so that method calls can be chained together. * @see EncryptionMode */ public CreateProfileJobRequest withEncryptionMode(String encryptionMode) { setEncryptionMode(encryptionMode); return this; } /** * <p> * The encryption mode for the job, which can be one of the following: * </p> * <ul> * <li> * <p> * <code>SSE-KMS</code> - <code>SSE-KMS</code> - Server-side encryption with KMS-managed keys. * </p> * </li> * <li> * <p> * <code>SSE-S3</code> - Server-side encryption with keys managed by Amazon S3. * </p> * </li> * </ul> * * @param encryptionMode * The encryption mode for the job, which can be one of the following:</p> * <ul> * <li> * <p> * <code>SSE-KMS</code> - <code>SSE-KMS</code> - Server-side encryption with KMS-managed keys. * </p> * </li> * <li> * <p> * <code>SSE-S3</code> - Server-side encryption with keys managed by Amazon S3. * </p> * </li> * @return Returns a reference to this object so that method calls can be chained together. * @see EncryptionMode */ public CreateProfileJobRequest withEncryptionMode(EncryptionMode encryptionMode) { this.encryptionMode = encryptionMode.toString(); return this; } /** * <p> * The name of the job to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and * space. * </p> * * @param name * The name of the job to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period * (.), and space. */ public void setName(String name) { this.name = name; } /** * <p> * The name of the job to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and * space. * </p> * * @return The name of the job to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period * (.), and space. */ public String getName() { return this.name; } /** * <p> * The name of the job to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and * space. * </p> * * @param name * The name of the job to be created. 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 CreateProfileJobRequest withName(String name) { setName(name); return this; } /** * <p> * Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log * stream for each job run. * </p> * * @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; } /** * <p> * Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log * stream for each job run. * </p> * * @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; } /** * <p> * Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log * stream for each job run. * </p> * * @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 CreateProfileJobRequest withLogSubscription(String logSubscription) { setLogSubscription(logSubscription); return this; } /** * <p> * Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log * stream for each job run. * </p> * * @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 CreateProfileJobRequest withLogSubscription(LogSubscription logSubscription) { this.logSubscription = logSubscription.toString(); return this; } /** * <p> * The maximum number of nodes that DataBrew can use when the job processes data. * </p> * * @param maxCapacity * The maximum number of nodes that DataBrew can use when the job processes data. */ public void setMaxCapacity(Integer maxCapacity) { this.maxCapacity = maxCapacity; } /** * <p> * The maximum number of nodes that DataBrew can use when the job processes data. * </p> * * @return The maximum number of nodes that DataBrew can use when the job processes data. */ public Integer getMaxCapacity() { return this.maxCapacity; } /** * <p> * The maximum number of nodes that DataBrew can use when the job processes data. * </p> * * @param maxCapacity * The maximum number of nodes that DataBrew can use when the job processes data. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateProfileJobRequest withMaxCapacity(Integer maxCapacity) { setMaxCapacity(maxCapacity); return this; } /** * <p> * The maximum number of times to retry the job after a job run fails. * </p> * * @param maxRetries * The maximum number of times to retry the job after a job run fails. */ public void setMaxRetries(Integer maxRetries) { this.maxRetries = maxRetries; } /** * <p> * The maximum number of times to retry the job after a job run fails. * </p> * * @return The maximum number of times to retry the job after a job run fails. */ public Integer getMaxRetries() { return this.maxRetries; } /** * <p> * The maximum number of times to retry the job after a job run fails. * </p> * * @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 CreateProfileJobRequest withMaxRetries(Integer maxRetries) { setMaxRetries(maxRetries); return this; } /** * @param outputLocation */ public void setOutputLocation(S3Location outputLocation) { this.outputLocation = outputLocation; } /** * @return */ public S3Location getOutputLocation() { return this.outputLocation; } /** * @param outputLocation * @return Returns a reference to this object so that method calls can be chained together. */ public CreateProfileJobRequest withOutputLocation(S3Location outputLocation) { setOutputLocation(outputLocation); return this; } /** * <p> * Configuration for profile jobs. Used to select columns, do evaluations, and override default parameters of * evaluations. When configuration is null, the profile job will run with default settings. * </p> * * @param configuration * Configuration for profile jobs. Used to select columns, do evaluations, and override default parameters of * evaluations. When configuration is null, the profile job will run with default settings. */ public void setConfiguration(ProfileConfiguration configuration) { this.configuration = configuration; } /** * <p> * Configuration for profile jobs. Used to select columns, do evaluations, and override default parameters of * evaluations. When configuration is null, the profile job will run with default settings. * </p> * * @return Configuration for profile jobs. Used to select columns, do evaluations, and override default parameters * of evaluations. When configuration is null, the profile job will run with default settings. */ public ProfileConfiguration getConfiguration() { return this.configuration; } /** * <p> * Configuration for profile jobs. Used to select columns, do evaluations, and override default parameters of * evaluations. When configuration is null, the profile job will run with default settings. * </p> * * @param configuration * Configuration for profile jobs. Used to select columns, do evaluations, and override default parameters of * evaluations. When configuration is null, the profile job will run with default settings. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateProfileJobRequest withConfiguration(ProfileConfiguration configuration) { setConfiguration(configuration); return this; } /** * <p> * List of validation configurations that are applied to the profile job. * </p> * * @return List of validation configurations that are applied to the profile job. */ public java.util.List<ValidationConfiguration> getValidationConfigurations() { return validationConfigurations; } /** * <p> * List of validation configurations that are applied to the profile job. * </p> * * @param validationConfigurations * List of validation configurations that are applied to the profile job. */ public void setValidationConfigurations(java.util.Collection<ValidationConfiguration> validationConfigurations) { if (validationConfigurations == null) { this.validationConfigurations = null; return; } this.validationConfigurations = new java.util.ArrayList<ValidationConfiguration>(validationConfigurations); } /** * <p> * List of validation configurations that are applied to the profile job. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setValidationConfigurations(java.util.Collection)} or * {@link #withValidationConfigurations(java.util.Collection)} if you want to override the existing values. * </p> * * @param validationConfigurations * List of validation configurations that are applied to the profile job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateProfileJobRequest withValidationConfigurations(ValidationConfiguration... validationConfigurations) { if (this.validationConfigurations == null) { setValidationConfigurations(new java.util.ArrayList<ValidationConfiguration>(validationConfigurations.length)); } for (ValidationConfiguration ele : validationConfigurations) { this.validationConfigurations.add(ele); } return this; } /** * <p> * List of validation configurations that are applied to the profile job. * </p> * * @param validationConfigurations * List of validation configurations that are applied to the profile job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateProfileJobRequest withValidationConfigurations(java.util.Collection<ValidationConfiguration> validationConfigurations) { setValidationConfigurations(validationConfigurations); return this; } /** * <p> * The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs * the job. * </p> * * @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; } /** * <p> * The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs * the job. * </p> * * @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; } /** * <p> * The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs * the job. * </p> * * @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 CreateProfileJobRequest withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** * <p> * Metadata tags to apply to this job. * </p> * * @return Metadata tags to apply to this job. */ public java.util.Map<String, String> getTags() { return tags; } /** * <p> * Metadata tags to apply to this job. * </p> * * @param tags * Metadata tags to apply to this job. */ public void setTags(java.util.Map<String, String> tags) { this.tags = tags; } /** * <p> * Metadata tags to apply to this job. * </p> * * @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 CreateProfileJobRequest withTags(java.util.Map<String, String> tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see CreateProfileJobRequest#withTags * @returns a reference to this object so that method calls can be chained together. */ public CreateProfileJobRequest addTagsEntry(String key, String value) { if (null == this.tags) { this.tags = new java.util.HashMap<String, String>(); } 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 CreateProfileJobRequest clearTagsEntries() { this.tags = null; return this; } /** * <p> * The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of * <code>TIMEOUT</code>. * </p> * * @param timeout * The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a * status of <code>TIMEOUT</code>. */ public void setTimeout(Integer timeout) { this.timeout = timeout; } /** * <p> * The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of * <code>TIMEOUT</code>. * </p> * * @return The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a * status of <code>TIMEOUT</code>. */ public Integer getTimeout() { return this.timeout; } /** * <p> * The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of * <code>TIMEOUT</code>. * </p> * * @param timeout * The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a * status of <code>TIMEOUT</code>. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateProfileJobRequest withTimeout(Integer timeout) { setTimeout(timeout); return this; } /** * <p> * Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be * executed. If a JobSample value is not provided, the default value will be used. The default value is CUSTOM_ROWS * for the mode parameter and 20000 for the size parameter. * </p> * * @param jobSample * Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be * executed. If a JobSample value is not provided, the default value will be used. The default value is * CUSTOM_ROWS for the mode parameter and 20000 for the size parameter. */ public void setJobSample(JobSample jobSample) { this.jobSample = jobSample; } /** * <p> * Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be * executed. If a JobSample value is not provided, the default value will be used. The default value is CUSTOM_ROWS * for the mode parameter and 20000 for the size parameter. * </p> * * @return Sample configuration for profile jobs only. Determines the number of rows on which the profile job will * be executed. If a JobSample value is not provided, the default value will be used. The default value is * CUSTOM_ROWS for the mode parameter and 20000 for the size parameter. */ public JobSample getJobSample() { return this.jobSample; } /** * <p> * Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be * executed. If a JobSample value is not provided, the default value will be used. The default value is CUSTOM_ROWS * for the mode parameter and 20000 for the size parameter. * </p> * * @param jobSample * Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be * executed. If a JobSample value is not provided, the default value will be used. The default value is * CUSTOM_ROWS for the mode parameter and 20000 for the size parameter. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateProfileJobRequest withJobSample(JobSample jobSample) { setJobSample(jobSample); 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 (getOutputLocation() != null) sb.append("OutputLocation: ").append(getOutputLocation()).append(","); if (getConfiguration() != null) sb.append("Configuration: ").append(getConfiguration()).append(","); if (getValidationConfigurations() != null) sb.append("ValidationConfigurations: ").append(getValidationConfigurations()).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()).append(","); if (getJobSample() != null) sb.append("JobSample: ").append(getJobSample()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateProfileJobRequest == false) return false; CreateProfileJobRequest other = (CreateProfileJobRequest) 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.getOutputLocation() == null ^ this.getOutputLocation() == null) return false; if (other.getOutputLocation() != null && other.getOutputLocation().equals(this.getOutputLocation()) == false) return false; if (other.getConfiguration() == null ^ this.getConfiguration() == null) return false; if (other.getConfiguration() != null && other.getConfiguration().equals(this.getConfiguration()) == false) return false; if (other.getValidationConfigurations() == null ^ this.getValidationConfigurations() == null) return false; if (other.getValidationConfigurations() != null && other.getValidationConfigurations().equals(this.getValidationConfigurations()) == 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; if (other.getJobSample() == null ^ this.getJobSample() == null) return false; if (other.getJobSample() != null && other.getJobSample().equals(this.getJobSample()) == 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 + ((getOutputLocation() == null) ? 0 : getOutputLocation().hashCode()); hashCode = prime * hashCode + ((getConfiguration() == null) ? 0 : getConfiguration().hashCode()); hashCode = prime * hashCode + ((getValidationConfigurations() == null) ? 0 : getValidationConfigurations().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()); hashCode = prime * hashCode + ((getJobSample() == null) ? 0 : getJobSample().hashCode()); return hashCode; } @Override public CreateProfileJobRequest clone() { return (CreateProfileJobRequest) super.clone(); } }