Skip to content

Get Matching Job

entityresolution_get_matching_job R Documentation

Gets the status, metrics, and errors (if there are any) that are associated with a job

Description

Gets the status, metrics, and errors (if there are any) that are associated with a job.

Usage

entityresolution_get_matching_job(jobId, workflowName)

Arguments

jobId

[required] The ID of the job.

workflowName

[required] The name of the workflow.

Value

A list with the following syntax:

list(
  endTime = as.POSIXct(
    "2015-01-01"
  ),
  errorDetails = list(
    errorMessage = "string"
  ),
  jobId = "string",
  metrics = list(
    inputRecords = 123,
    matchIDs = 123,
    recordsNotProcessed = 123,
    totalRecordsProcessed = 123
  ),
  outputSourceConfig = list(
    list(
      KMSArn = "string",
      outputS3Path = "string",
      roleArn = "string"
    )
  ),
  startTime = as.POSIXct(
    "2015-01-01"
  ),
  status = "RUNNING"|"SUCCEEDED"|"FAILED"|"QUEUED"
)

Request syntax

svc$get_matching_job(
  jobId = "string",
  workflowName = "string"
)