---
title: "PUT /profileJobs/{name}"
method: PUT
path: "/profileJobs/{name}"
---

# PUT /profileJobs/{name}

`PUT /profileJobs/{name}`

Modifies the definition of an existing profile job.

## Path parameters

- `name` string, required

## Request body

- object
  - `Configuration` object — Configuration for profile jobs. Configuration can be used to select columns, do evaluations, and override default parameters of evaluations. When configuration is undefined, the profile job will apply default settings to all supported columns.
    - `DatasetStatisticsConfiguration` object — Configuration for inter-column evaluations. Configuration can be used to select evaluations and override parameters of evaluations. When configuration is undefined, the profile job will run all supported inter-column evaluations.
      - `IncludedStatistics` Statistic[] — List of included evaluations. When the list is undefined, all supported evaluations will be included.
      - `Overrides` StatisticOverride[] — List of overrides for evaluations.
        - `Statistic` string, required — The name of an evaluation
        - `Parameters` object, required — A map that includes overrides of an evaluation’s parameters.
    - `ProfileColumns` ColumnSelector[] — List of column selectors. ProfileColumns can be used to select columns from the dataset. When ProfileColumns is undefined, the profile job will profile all supported columns.
      - `Regex` string — A regular expression for selecting a column from a dataset.
      - `Name` string — The name of a column from a dataset.
    - `ColumnStatisticsConfigurations` ColumnStatisticsConfiguration[] — List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.
      - `Selectors` ColumnSelector[] — List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.
        - `Regex` string — A regular expression for selecting a column from a dataset.
        - `Name` string — The name of a column from a dataset.
      - `Statistics` object, required — Configuration for evaluations. Statistics can be used to select evaluations and override parameters of evaluations.
        - `IncludedStatistics` Statistic[] — List of included evaluations. When the list is undefined, all supported evaluations will be included.
        - `Overrides` StatisticOverride[] — List of overrides for evaluations.
          - `Statistic` string, required — The name of an evaluation
          - `Parameters` object, required — A map that includes overrides of an evaluation’s parameters.
    - `EntityDetectorConfiguration` object — Configuration of entity detection for a profile job. When undefined, entity detection is disabled.
      - `EntityTypes` EntityType[], required — <p>Entity types to detect. Can be any of the following:</p> <ul> <li> <p>USA_SSN</p> </li> <li> <p>EMAIL</p> </li> <li> <p>USA_ITIN</p> </li> <li> <p>USA_PASSPORT_NUMBER</p> </li> <li> <p>PHONE_NUMBER</p> </li> <li> <p>USA_DRIVING_LICENSE</p> </li> <li> <p>BANK_ACCOUNT</p> </li> <li> <p>CREDIT_CARD</p> </li> <li> <p>IP_ADDRESS</p> </li> <li> <p>MAC_ADDRESS</p> </li> <li> <p>USA_DEA_NUMBER</p> </li> <li> <p>USA_HCPCS_CODE</p> </li> <li> <p>USA_NATIONAL_PROVIDER_IDENTIFIER</p> </li> <li> <p>USA_NATIONAL_DRUG_CODE</p> </li> <li> <p>USA_HEALTH_INSURANCE_CLAIM_NUMBER</p> </li> <li> <p>USA_MEDICARE_BENEFICIARY_IDENTIFIER</p> </li> <li> <p>USA_CPT_CODE</p> </li> <li> <p>PERSON_NAME</p> </li> <li> <p>DATE</p> </li> </ul> <p>The Entity type group USA_ALL is also supported, and includes all of the above entity types except PERSON_NAME and DATE.</p>
      - `AllowedStatistics` AllowedStatistics[] — Configuration of statistics that are allowed to be run on columns that contain detected entities. When undefined, no statistics will be computed on columns that contain detected entities.
        - `Statistics` Statistic[], required — One or more column statistics to allow for columns that contain detected entities.
  - `EncryptionKeyArn` string — The Amazon Resource Name (ARN) of an encryption key that is used to protect the job.
  - `EncryptionMode` 'SSE-KMS' | 'SSE-S3' — <p>The encryption mode for the job, which can be one of the following:</p> <ul> <li> <p> <code>SSE-KMS</code> - Server-side encryption with keys managed by KMS.</p> </li> <li> <p> <code>SSE-S3</code> - Server-side encryption with keys managed by Amazon S3.</p> </li> </ul>
  - `LogSubscription` 'ENABLE' | 'DISABLE' — Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log stream for each job run.
  - `MaxCapacity` integer — The maximum number of compute nodes that DataBrew can use when the job processes data.
  - `MaxRetries` integer — The maximum number of times to retry the job after a job run fails.
  - `OutputLocation` object, required — Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read input data, or write output from a job.
    - `Bucket` string — The Amazon S3 bucket name.
    - `Key` string — The unique name of the object in the bucket.
    - `BucketOwner` string — The Amazon Web Services account ID of the bucket owner.
  - `ValidationConfigurations` ValidationConfiguration[] — List of validation configurations that are applied to the profile job.
    - `RulesetArn` string, required — The Amazon Resource Name (ARN) for the ruleset to be validated in the profile job. The TargetArn of the selected ruleset should be the same as the Amazon Resource Name (ARN) of the dataset that is associated with the profile job.
    - `ValidationMode` 'CHECK_ALL' — Mode of data quality validation. Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.
  - `RoleArn` string, required — The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
  - `Timeout` integer — 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>.
  - `JobSample` object — A sample configuration for profile jobs only, which determines the number of rows on which the profile job is run. If a <code>JobSample</code> value isn't provided, the default is used. The default value is CUSTOM_ROWS for the mode parameter and 20,000 for the size parameter.
    - `Mode` 'FULL_DATASET' | 'CUSTOM_ROWS' — <p>A value that determines whether the profile job is run on the entire dataset or a specified number of rows. This value must be one of the following:</p> <ul> <li> <p>FULL_DATASET - The profile job is run on the entire dataset.</p> </li> <li> <p>CUSTOM_ROWS - The profile job is run on the number of rows specified in the <code>Size</code> parameter.</p> </li> </ul>
    - `Size` integer — <p>The <code>Size</code> parameter is only required when the mode is CUSTOM_ROWS. The profile job is run on the specified number of rows. The maximum value for size is Long.MAX_VALUE.</p> <p>Long.MAX_VALUE = 9223372036854775807</p>

## Response `200`

Success

- UpdateProfileJobResponse
  - `Name` string, required — The name of the job that was updated.

## Other responses

- `480` — AccessDeniedException
- `481` — ResourceNotFoundException
- `482` — ValidationException

---

[API](https://skmtc.net/aws/apis/databrew.md) · [All operations](https://skmtc.net/aws/apis/databrew/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/aws/databrew/versions/c06b9719d66f/schema)
