Get Id Mapping Job
entityresolution_get_id_mapping_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¶
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,
recordsNotProcessed = 123,
totalMappedRecords = 123,
totalMappedSourceRecords = 123,
totalMappedTargetRecords = 123,
totalRecordsProcessed = 123
),
outputSourceConfig = list(
list(
KMSArn = "string",
outputS3Path = "string",
roleArn = "string"
)
),
startTime = as.POSIXct(
"2015-01-01"
),
status = "RUNNING"|"SUCCEEDED"|"FAILED"|"QUEUED"
)