Modifies the definition of an existing profile job
Source:R/gluedatabrew_operations.R
gluedatabrew_update_profile_job.RdModifies the definition of an existing profile job.
See https://www.paws-r-sdk.com/docs/gluedatabrew_update_profile_job/ for full documentation.
Usage
gluedatabrew_update_profile_job(
Configuration = NULL,
EncryptionKeyArn = NULL,
EncryptionMode = NULL,
Name,
LogSubscription = NULL,
MaxCapacity = NULL,
MaxRetries = NULL,
OutputLocation,
ValidationConfigurations = NULL,
RoleArn,
Timeout = NULL,
JobSample = NULL
)Arguments
- 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.
- EncryptionKeyArn
The Amazon Resource Name (ARN) of an encryption key that is used to protect the job.
- 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.
- Name
[required] The name of the job to be updated.
- LogSubscription
Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log stream for each job run.
- MaxCapacity
The maximum number of compute nodes that DataBrew can use when the job processes data.
- MaxRetries
The maximum number of times to retry the job after a job run fails.
- OutputLocation
[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.
- ValidationConfigurations
List of validation configurations that are applied to the profile job.
- RoleArn
[required] The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
- Timeout
The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of
TIMEOUT.- 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 for profile jobs, the default value will be used. The default value is CUSTOM_ROWS for the mode parameter and 20000 for the size parameter.