Starts the IdMappingJob of a workflow
Source:R/entityresolution_operations.R
entityresolution_start_id_mapping_job.RdStarts the IdMappingJob of a workflow. The workflow must have previously been created using the create_id_mapping_workflow endpoint.
See https://www.paws-r-sdk.com/docs/entityresolution_start_id_mapping_job/ for full documentation.
Usage
entityresolution_start_id_mapping_job(
workflowName,
outputSourceConfig = NULL,
jobType = NULL
)Arguments
- workflowName
[required] The name of the ID mapping job to be retrieved.
- outputSourceConfig
A list of
OutputSourceobjects.- jobType
The job type for the ID mapping job.
If the
jobTypevalue is set toINCREMENTAL, only new or changed data is processed since the last job run. This is the default value if thecreate_id_mapping_workflowAPI is configured with anincrementalRunConfig.If the
jobTypevalue is set toBATCH, all data is processed from the input source, regardless of previous job runs. This is the default value if thecreate_id_mapping_workflowAPI isn't configured with anincrementalRunConfig.If the
jobTypevalue is set toDELETE_ONLY, only deletion requests fromBatchDeleteUniqueIdsare processed.