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(workflowName, jobId)
Arguments¶
workflowName |
[required] The name of the workflow. |
jobId |
[required] The ID of the job. |
Value¶
A list with the following syntax:
list(
jobId = "string",
status = "RUNNING"|"SUCCEEDED"|"FAILED"|"QUEUED",
startTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
),
metrics = list(
inputRecords = 123,
totalRecordsProcessed = 123,
recordsNotProcessed = 123,
matchIDs = 123
),
errorDetails = list(
errorMessage = "string"
),
outputSourceConfig = list(
list(
roleArn = "string",
outputS3Path = "string",
KMSArn = "string"
)
)
)
Request syntax¶
svc$get_matching_job(
workflowName = "string",
jobId = "string"
)