Interface DescribeJobResponse.Builder

    • Method Detail

      • createDate

        DescribeJobResponse.Builder createDate​(Instant createDate)

        The date and time that the job was created.

        Parameters:
        createDate - The date and time that the job was created.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • createdBy

        DescribeJobResponse.Builder createdBy​(String createdBy)

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

        Parameters:
        createdBy - The identifier (user name) of the user associated with the creation of the job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • datasetName

        DescribeJobResponse.Builder datasetName​(String datasetName)

        The dataset that the job acts upon.

        Parameters:
        datasetName - The dataset that the job acts upon.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • encryptionKeyArn

        DescribeJobResponse.Builder encryptionKeyArn​(String encryptionKeyArn)

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

        Parameters:
        encryptionKeyArn - The Amazon Resource Name (ARN) of an encryption key that is used to protect the job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • encryptionMode

        DescribeJobResponse.Builder encryptionMode​(String 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.

        Parameters:
        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.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        EncryptionMode, EncryptionMode
      • encryptionMode

        DescribeJobResponse.Builder encryptionMode​(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.

        Parameters:
        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.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        EncryptionMode, EncryptionMode
      • name

        DescribeJobResponse.Builder name​(String name)

        The name of the job.

        Parameters:
        name - The name of the job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • type

        DescribeJobResponse.Builder type​(String 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.

        Parameters:
        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.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        JobType, JobType
      • type

        DescribeJobResponse.Builder type​(JobType 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.

        Parameters:
        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.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        JobType, JobType
      • lastModifiedBy

        DescribeJobResponse.Builder lastModifiedBy​(String lastModifiedBy)

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

        Parameters:
        lastModifiedBy - The identifier (user name) of the user who last modified the job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • lastModifiedDate

        DescribeJobResponse.Builder lastModifiedDate​(Instant lastModifiedDate)

        The date and time that the job was last modified.

        Parameters:
        lastModifiedDate - The date and time that the job was last modified.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • logSubscription

        DescribeJobResponse.Builder logSubscription​(String logSubscription)

        Indicates whether Amazon CloudWatch logging is enabled for this job.

        Parameters:
        logSubscription - Indicates whether Amazon CloudWatch logging is enabled for this job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        LogSubscription, LogSubscription
      • logSubscription

        DescribeJobResponse.Builder logSubscription​(LogSubscription logSubscription)

        Indicates whether Amazon CloudWatch logging is enabled for this job.

        Parameters:
        logSubscription - Indicates whether Amazon CloudWatch logging is enabled for this job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        LogSubscription, LogSubscription
      • maxCapacity

        DescribeJobResponse.Builder maxCapacity​(Integer maxCapacity)

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

        Parameters:
        maxCapacity - The maximum number of compute nodes that DataBrew can consume when the job processes data.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • maxRetries

        DescribeJobResponse.Builder maxRetries​(Integer maxRetries)

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

        Parameters:
        maxRetries - The maximum number of times to retry the job after a job run fails.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • outputs

        DescribeJobResponse.Builder outputs​(Collection<Output> outputs)

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

        Parameters:
        outputs - One or more artifacts that represent the output from running the job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • outputs

        DescribeJobResponse.Builder outputs​(Output... outputs)

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

        Parameters:
        outputs - One or more artifacts that represent the output from running the job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • outputs

        DescribeJobResponse.Builder outputs​(Consumer<Output.Builder>... outputs)

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

        This is a convenience method that creates an instance of the Output.Builder avoiding the need to create one manually via Output.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #outputs(List).

        Parameters:
        outputs - a consumer that will call methods on Output.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #outputs(java.util.Collection)
      • dataCatalogOutputs

        DescribeJobResponse.Builder dataCatalogOutputs​(Collection<DataCatalogOutput> dataCatalogOutputs)

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

        Parameters:
        dataCatalogOutputs - One or more artifacts that represent the Glue Data Catalog output from running the job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • dataCatalogOutputs

        DescribeJobResponse.Builder dataCatalogOutputs​(DataCatalogOutput... dataCatalogOutputs)

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

        Parameters:
        dataCatalogOutputs - One or more artifacts that represent the Glue Data Catalog output from running the job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • databaseOutputs

        DescribeJobResponse.Builder databaseOutputs​(Collection<DatabaseOutput> databaseOutputs)

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

        Parameters:
        databaseOutputs - Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job to write into.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • databaseOutputs

        DescribeJobResponse.Builder databaseOutputs​(DatabaseOutput... databaseOutputs)

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

        Parameters:
        databaseOutputs - Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job to write into.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • projectName

        DescribeJobResponse.Builder projectName​(String projectName)

        The DataBrew project associated with this job.

        Parameters:
        projectName - The DataBrew project associated with this job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • profileConfiguration

        DescribeJobResponse.Builder profileConfiguration​(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.

        Parameters:
        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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • validationConfigurations

        DescribeJobResponse.Builder validationConfigurations​(Collection<ValidationConfiguration> validationConfigurations)

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

        Parameters:
        validationConfigurations - List of validation configurations that are applied to the profile job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • validationConfigurations

        DescribeJobResponse.Builder validationConfigurations​(ValidationConfiguration... validationConfigurations)

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

        Parameters:
        validationConfigurations - List of validation configurations that are applied to the profile job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • recipeReference

        DescribeJobResponse.Builder recipeReference​(RecipeReference recipeReference)
        Sets the value of the RecipeReference property for this object.
        Parameters:
        recipeReference - The new value for the RecipeReference property for this object.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • resourceArn

        DescribeJobResponse.Builder resourceArn​(String resourceArn)

        The Amazon Resource Name (ARN) of the job.

        Parameters:
        resourceArn - The Amazon Resource Name (ARN) of the job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • roleArn

        DescribeJobResponse.Builder roleArn​(String roleArn)

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

        Parameters:
        roleArn - The ARN of the Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        DescribeJobResponse.Builder tags​(Map<String,​String> tags)

        Metadata tags associated with this job.

        Parameters:
        tags - Metadata tags associated with this job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • timeout

        DescribeJobResponse.Builder timeout​(Integer timeout)

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

        Parameters:
        timeout - The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of TIMEOUT.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • jobSample

        DescribeJobResponse.Builder jobSample​(JobSample jobSample)

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

        Parameters:
        jobSample - Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be executed.
        Returns:
        Returns a reference to this object so that method calls can be chained together.