/* * 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; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DescribeJobResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable { /** *

* The date and time that the job was created. *

*/ private java.util.Date createDate; /** *

* The identifier (user name) of the user associated with the creation of the job. *

*/ private String createdBy; /** *

* The dataset that the job acts upon. *

*/ 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; /** *

* The name of the job. *

*/ private String name; /** *

* The job type, which must be one of the following: *

* */ private String type; /** *

* The identifier (user name) of the user who last modified the job. *

*/ private String lastModifiedBy; /** *

* The date and time that the job was last modified. *

*/ private java.util.Date lastModifiedDate; /** *

* Indicates whether Amazon CloudWatch logging is enabled for this job. *

*/ private String logSubscription; /** *

* The maximum number of compute 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 into. *

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

* The DataBrew project associated with this job. *

*/ private String projectName; /** *

* 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. *

*/ private ProfileConfiguration profileConfiguration; /** *

* List of validation configurations that are applied to the profile job. *

*/ private java.util.List validationConfigurations; private RecipeReference recipeReference; /** *

* The Amazon Resource Name (ARN) of the job. *

*/ private String resourceArn; /** *

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

*/ private String roleArn; /** *

* Metadata tags associated with 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; /** *

* Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be * executed. *

*/ private JobSample jobSample; /** *

* The date and time that the job was created. *

* * @param createDate * The date and time that the job was created. */ public void setCreateDate(java.util.Date createDate) { this.createDate = createDate; } /** *

* The date and time that the job was created. *

* * @return The date and time that the job was created. */ public java.util.Date getCreateDate() { return this.createDate; } /** *

* The date and time that the job was created. *

* * @param createDate * The date and time that the job was created. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeJobResult withCreateDate(java.util.Date createDate) { setCreateDate(createDate); return this; } /** *

* The identifier (user name) of the user associated with the creation of the job. *

* * @param createdBy * The identifier (user name) of the user associated with the creation of the job. */ public void setCreatedBy(String createdBy) { this.createdBy = createdBy; } /** *

* The identifier (user name) of the user associated with the creation of the job. *

* * @return The identifier (user name) of the user associated with the creation of the job. */ public String getCreatedBy() { return this.createdBy; } /** *

* The identifier (user name) of the user associated with the creation of the job. *

* * @param createdBy * The identifier (user name) of the user associated with the creation of the job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeJobResult withCreatedBy(String createdBy) { setCreatedBy(createdBy); return this; } /** *

* The dataset that the job acts upon. *

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

* The dataset that the job acts upon. *

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

* The dataset that the job acts upon. *

* * @param datasetName * The dataset that the job acts upon. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeJobResult 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 DescribeJobResult 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 DescribeJobResult 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 DescribeJobResult withEncryptionMode(EncryptionMode encryptionMode) { this.encryptionMode = encryptionMode.toString(); return this; } /** *

          * The name of the job. *

          * * @param name * The name of the job. */ public void setName(String name) { this.name = name; } /** *

          * The name of the job. *

          * * @return The name of the job. */ public String getName() { return this.name; } /** *

          * The name of the job. *

          * * @param name * The name of the job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeJobResult withName(String name) { setName(name); return this; } /** *

          * The job type, which must be one of the following: *

          *
            *
          • *

            * PROFILE - The job analyzes the dataset to determine its size, data types, data distribution, and * more. *

            *
          • *
          • *

            * RECIPE - The job applies one or more transformations to a dataset. *

            *
          • *
          * * @param type * The job type, which must be one of the following:

          *
            *
          • *

            * PROFILE - The job analyzes the dataset to determine its size, data types, data distribution, * and more. *

            *
          • *
          • *

            * RECIPE - The job applies one or more transformations to a dataset. *

            *
          • * @see JobType */ public void setType(String type) { this.type = type; } /** *

            * The job type, which must be one of the following: *

            *
              *
            • *

              * PROFILE - The job analyzes the dataset to determine its size, data types, data distribution, and * more. *

              *
            • *
            • *

              * RECIPE - The job applies one or more transformations to a dataset. *

              *
            • *
            * * @return The job type, which must be one of the following:

            *
              *
            • *

              * PROFILE - The job analyzes the dataset to determine its size, data types, data distribution, * and more. *

              *
            • *
            • *

              * RECIPE - The job applies one or more transformations to a dataset. *

              *
            • * @see JobType */ public String getType() { return this.type; } /** *

              * The job type, which must be one of the following: *

              *
                *
              • *

                * PROFILE - The job analyzes the dataset to determine its size, data types, data distribution, and * more. *

                *
              • *
              • *

                * RECIPE - The job applies one or more transformations to a dataset. *

                *
              • *
              * * @param type * The job type, which must be one of the following:

              *
                *
              • *

                * PROFILE - The job analyzes the dataset to determine its size, data types, data distribution, * and more. *

                *
              • *
              • *

                * RECIPE - The job applies one or more transformations to a dataset. *

                *
              • * @return Returns a reference to this object so that method calls can be chained together. * @see JobType */ public DescribeJobResult withType(String type) { setType(type); return this; } /** *

                * The job type, which must be one of the following: *

                *
                  *
                • *

                  * PROFILE - The job analyzes the dataset to determine its size, data types, data distribution, and * more. *

                  *
                • *
                • *

                  * RECIPE - The job applies one or more transformations to a dataset. *

                  *
                • *
                * * @param type * The job type, which must be one of the following:

                *
                  *
                • *

                  * PROFILE - The job analyzes the dataset to determine its size, data types, data distribution, * and more. *

                  *
                • *
                • *

                  * RECIPE - The job applies one or more transformations to a dataset. *

                  *
                • * @return Returns a reference to this object so that method calls can be chained together. * @see JobType */ public DescribeJobResult withType(JobType type) { this.type = type.toString(); return this; } /** *

                  * The identifier (user name) of the user who last modified the job. *

                  * * @param lastModifiedBy * The identifier (user name) of the user who last modified the job. */ public void setLastModifiedBy(String lastModifiedBy) { this.lastModifiedBy = lastModifiedBy; } /** *

                  * The identifier (user name) of the user who last modified the job. *

                  * * @return The identifier (user name) of the user who last modified the job. */ public String getLastModifiedBy() { return this.lastModifiedBy; } /** *

                  * The identifier (user name) of the user who last modified the job. *

                  * * @param lastModifiedBy * The identifier (user name) of the user who last modified the job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeJobResult withLastModifiedBy(String lastModifiedBy) { setLastModifiedBy(lastModifiedBy); return this; } /** *

                  * The date and time that the job was last modified. *

                  * * @param lastModifiedDate * The date and time that the job was last modified. */ public void setLastModifiedDate(java.util.Date lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; } /** *

                  * The date and time that the job was last modified. *

                  * * @return The date and time that the job was last modified. */ public java.util.Date getLastModifiedDate() { return this.lastModifiedDate; } /** *

                  * The date and time that the job was last modified. *

                  * * @param lastModifiedDate * The date and time that the job was last modified. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeJobResult withLastModifiedDate(java.util.Date lastModifiedDate) { setLastModifiedDate(lastModifiedDate); return this; } /** *

                  * Indicates whether Amazon CloudWatch logging is enabled for this job. *

                  * * @param logSubscription * Indicates whether Amazon CloudWatch logging is enabled for this job. * @see LogSubscription */ public void setLogSubscription(String logSubscription) { this.logSubscription = logSubscription; } /** *

                  * Indicates whether Amazon CloudWatch logging is enabled for this job. *

                  * * @return Indicates whether Amazon CloudWatch logging is enabled for this job. * @see LogSubscription */ public String getLogSubscription() { return this.logSubscription; } /** *

                  * Indicates whether Amazon CloudWatch logging is enabled for this job. *

                  * * @param logSubscription * Indicates whether Amazon CloudWatch logging is enabled for this job. * @return Returns a reference to this object so that method calls can be chained together. * @see LogSubscription */ public DescribeJobResult withLogSubscription(String logSubscription) { setLogSubscription(logSubscription); return this; } /** *

                  * Indicates whether Amazon CloudWatch logging is enabled for this job. *

                  * * @param logSubscription * Indicates whether Amazon CloudWatch logging is enabled for this job. * @return Returns a reference to this object so that method calls can be chained together. * @see LogSubscription */ public DescribeJobResult withLogSubscription(LogSubscription logSubscription) { this.logSubscription = logSubscription.toString(); return this; } /** *

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

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

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

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

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

                  * * @param maxCapacity * The maximum number of compute 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 DescribeJobResult 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 DescribeJobResult 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 DescribeJobResult 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 DescribeJobResult 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 DescribeJobResult 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 DescribeJobResult 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 into. *

                  * * @return Represents a list of JDBC database output objects which defines the output destination for a DataBrew * recipe job to write into. */ 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 into. *

                  * * @param databaseOutputs * Represents a list of JDBC database output objects which defines the output destination for a DataBrew * recipe job to write into. */ 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 into. *

                  *

                  * 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 into. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeJobResult 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 into. *

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

                  * The DataBrew project associated with this job. *

                  * * @param projectName * The DataBrew project associated with this job. */ public void setProjectName(String projectName) { this.projectName = projectName; } /** *

                  * The DataBrew project associated with this job. *

                  * * @return The DataBrew project associated with this job. */ public String getProjectName() { return this.projectName; } /** *

                  * The DataBrew project associated with this job. *

                  * * @param projectName * The DataBrew project associated with this job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeJobResult withProjectName(String projectName) { setProjectName(projectName); return this; } /** *

                  * 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. *

                  * * @param profileConfiguration * 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 setProfileConfiguration(ProfileConfiguration profileConfiguration) { this.profileConfiguration = profileConfiguration; } /** *

                  * 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 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 getProfileConfiguration() { return this.profileConfiguration; } /** *

                  * 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. *

                  * * @param profileConfiguration * 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 DescribeJobResult withProfileConfiguration(ProfileConfiguration profileConfiguration) { setProfileConfiguration(profileConfiguration); return this; } /** *

                  * List of validation configurations that are applied to the profile job. *

                  * * @return List of validation configurations that are applied to the profile job. */ public java.util.List getValidationConfigurations() { return validationConfigurations; } /** *

                  * List of validation configurations that are applied to the profile job. *

                  * * @param validationConfigurations * List of validation configurations that are applied to the profile job. */ public void setValidationConfigurations(java.util.Collection validationConfigurations) { if (validationConfigurations == null) { this.validationConfigurations = null; return; } this.validationConfigurations = new java.util.ArrayList(validationConfigurations); } /** *

                  * List of validation configurations that are applied to the profile job. *

                  *

                  * NOTE: 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. *

                  * * @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 DescribeJobResult withValidationConfigurations(ValidationConfiguration... validationConfigurations) { if (this.validationConfigurations == null) { setValidationConfigurations(new java.util.ArrayList(validationConfigurations.length)); } for (ValidationConfiguration ele : validationConfigurations) { this.validationConfigurations.add(ele); } return this; } /** *

                  * List of validation configurations that are applied to the profile job. *

                  * * @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 DescribeJobResult withValidationConfigurations(java.util.Collection validationConfigurations) { setValidationConfigurations(validationConfigurations); 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 DescribeJobResult withRecipeReference(RecipeReference recipeReference) { setRecipeReference(recipeReference); return this; } /** *

                  * The Amazon Resource Name (ARN) of the job. *

                  * * @param resourceArn * The Amazon Resource Name (ARN) of the job. */ public void setResourceArn(String resourceArn) { this.resourceArn = resourceArn; } /** *

                  * The Amazon Resource Name (ARN) of the job. *

                  * * @return The Amazon Resource Name (ARN) of the job. */ public String getResourceArn() { return this.resourceArn; } /** *

                  * The Amazon Resource Name (ARN) of the job. *

                  * * @param resourceArn * The Amazon Resource Name (ARN) of the job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeJobResult withResourceArn(String resourceArn) { setResourceArn(resourceArn); return this; } /** *

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

                  * * @param roleArn * The 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 ARN of the Identity and Access Management (IAM) role to be assumed when DataBrew runs the job. *

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

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

                  * * @param roleArn * The 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 DescribeJobResult withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** *

                  * Metadata tags associated with this job. *

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

                  * Metadata tags associated with this job. *

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

                  * Metadata tags associated with this job. *

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

                  * Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be * executed. *

                  * * @param jobSample * Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be * executed. */ public void setJobSample(JobSample jobSample) { this.jobSample = jobSample; } /** *

                  * Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be * executed. *

                  * * @return Sample configuration for profile jobs only. Determines the number of rows on which the profile job will * be executed. */ public JobSample getJobSample() { return this.jobSample; } /** *

                  * Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be * executed. *

                  * * @param jobSample * Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be * executed. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeJobResult 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 (getCreateDate() != null) sb.append("CreateDate: ").append(getCreateDate()).append(","); if (getCreatedBy() != null) sb.append("CreatedBy: ").append(getCreatedBy()).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 (getType() != null) sb.append("Type: ").append(getType()).append(","); if (getLastModifiedBy() != null) sb.append("LastModifiedBy: ").append(getLastModifiedBy()).append(","); if (getLastModifiedDate() != null) sb.append("LastModifiedDate: ").append(getLastModifiedDate()).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 (getProfileConfiguration() != null) sb.append("ProfileConfiguration: ").append(getProfileConfiguration()).append(","); if (getValidationConfigurations() != null) sb.append("ValidationConfigurations: ").append(getValidationConfigurations()).append(","); if (getRecipeReference() != null) sb.append("RecipeReference: ").append(getRecipeReference()).append(","); if (getResourceArn() != null) sb.append("ResourceArn: ").append(getResourceArn()).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 DescribeJobResult == false) return false; DescribeJobResult other = (DescribeJobResult) obj; if (other.getCreateDate() == null ^ this.getCreateDate() == null) return false; if (other.getCreateDate() != null && other.getCreateDate().equals(this.getCreateDate()) == false) return false; if (other.getCreatedBy() == null ^ this.getCreatedBy() == null) return false; if (other.getCreatedBy() != null && other.getCreatedBy().equals(this.getCreatedBy()) == false) return false; 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.getType() == null ^ this.getType() == null) return false; if (other.getType() != null && other.getType().equals(this.getType()) == false) return false; if (other.getLastModifiedBy() == null ^ this.getLastModifiedBy() == null) return false; if (other.getLastModifiedBy() != null && other.getLastModifiedBy().equals(this.getLastModifiedBy()) == false) return false; if (other.getLastModifiedDate() == null ^ this.getLastModifiedDate() == null) return false; if (other.getLastModifiedDate() != null && other.getLastModifiedDate().equals(this.getLastModifiedDate()) == 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.getProfileConfiguration() == null ^ this.getProfileConfiguration() == null) return false; if (other.getProfileConfiguration() != null && other.getProfileConfiguration().equals(this.getProfileConfiguration()) == 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.getRecipeReference() == null ^ this.getRecipeReference() == null) return false; if (other.getRecipeReference() != null && other.getRecipeReference().equals(this.getRecipeReference()) == false) return false; if (other.getResourceArn() == null ^ this.getResourceArn() == null) return false; if (other.getResourceArn() != null && other.getResourceArn().equals(this.getResourceArn()) == 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 + ((getCreateDate() == null) ? 0 : getCreateDate().hashCode()); hashCode = prime * hashCode + ((getCreatedBy() == null) ? 0 : getCreatedBy().hashCode()); 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 + ((getType() == null) ? 0 : getType().hashCode()); hashCode = prime * hashCode + ((getLastModifiedBy() == null) ? 0 : getLastModifiedBy().hashCode()); hashCode = prime * hashCode + ((getLastModifiedDate() == null) ? 0 : getLastModifiedDate().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 + ((getProfileConfiguration() == null) ? 0 : getProfileConfiguration().hashCode()); hashCode = prime * hashCode + ((getValidationConfigurations() == null) ? 0 : getValidationConfigurations().hashCode()); hashCode = prime * hashCode + ((getRecipeReference() == null) ? 0 : getRecipeReference().hashCode()); hashCode = prime * hashCode + ((getResourceArn() == null) ? 0 : getResourceArn().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 DescribeJobResult clone() { try { return (DescribeJobResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }