Start Id Mapping Job
entityresolution_start_id_mapping_job | R Documentation |
Starts the IdMappingJob of a workflow¶
Description¶
Starts the IdMappingJob
of a workflow. The workflow must have
previously been created using the create_id_mapping_workflow
endpoint.
Usage¶
entityresolution_start_id_mapping_job(outputSourceConfig, workflowName)
Arguments¶
outputSourceConfig |
A list of |
workflowName |
[required] The name of the ID mapping job to be retrieved. |
Value¶
A list with the following syntax:
list(
jobId = "string",
outputSourceConfig = list(
list(
KMSArn = "string",
outputS3Path = "string",
roleArn = "string"
)
)
)
Request syntax¶
svc$start_id_mapping_job(
outputSourceConfig = list(
list(
KMSArn = "string",
outputS3Path = "string",
roleArn = "string"
)
),
workflowName = "string"
)