Skip to content

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(workflowName, outputSourceConfig)

Arguments

workflowName

[required] The name of the ID mapping job to be retrieved.

outputSourceConfig

A list of OutputSource objects.

Value

A list with the following syntax:

list(
  jobId = "string",
  outputSourceConfig = list(
    list(
      roleArn = "string",
      outputS3Path = "string",
      KMSArn = "string"
    )
  )
)

Request syntax

svc$start_id_mapping_job(
  workflowName = "string",
  outputSourceConfig = list(
    list(
      roleArn = "string",
      outputS3Path = "string",
      KMSArn = "string"
    )
  )
)