Creates a new job to transform input data, using steps defined in an existing Glue DataBrew recipe
Source:R/gluedatabrew_operations.R
gluedatabrew_create_recipe_job.RdCreates a new job to transform input data, using steps defined in an existing Glue DataBrew recipe
See https://www.paws-r-sdk.com/docs/gluedatabrew_create_recipe_job/ for full documentation.
Usage
gluedatabrew_create_recipe_job(
DatasetName = NULL,
EncryptionKeyArn = NULL,
EncryptionMode = NULL,
Name,
LogSubscription = NULL,
MaxCapacity = NULL,
MaxRetries = NULL,
Outputs = NULL,
DataCatalogOutputs = NULL,
DatabaseOutputs = NULL,
ProjectName = NULL,
RecipeReference = NULL,
RoleArn,
Tags = NULL,
Timeout = NULL
)Arguments
- DatasetName
The name of the dataset that this job processes.
- 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] A unique name for the job. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
- 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 nodes that DataBrew can consume when the job processes data.
- MaxRetries
The maximum number of times to retry the job after a job run fails.
- Outputs
One or more artifacts that represent the output from running the job.
- DataCatalogOutputs
One or more artifacts that represent the Glue Data Catalog output from running the job.
- DatabaseOutputs
Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job to write to.
- ProjectName
Either the name of an existing project, or a combination of a recipe and a dataset to associate with the recipe.
- RecipeReference
Represents the name and version of a DataBrew recipe.
- RoleArn
[required] The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
Metadata tags to apply to this 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.