EntityResolution / Client / list_matching_jobs
list_matching_jobs¶
- EntityResolution.Client.list_matching_jobs(**kwargs)¶
- Lists all jobs for a given workflow. - See also: AWS API Documentation - Request Syntax- response = client.list_matching_jobs( workflowName='string', nextToken='string', maxResults=123 ) - Parameters:
- workflowName (string) – - [REQUIRED] - The name of the workflow to be retrieved. 
- nextToken (string) – The pagination token from the previous API call. 
- maxResults (integer) – The maximum number of objects returned per page. 
 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'jobs': [ { 'jobId': 'string', 'status': 'RUNNING'|'SUCCEEDED'|'FAILED'|'QUEUED', 'startTime': datetime(2015, 1, 1), 'endTime': datetime(2015, 1, 1) }, ], 'nextToken': 'string' } - Response Structure- (dict) – - jobs (list) – - A list of - JobSummaryobjects, each of which contain the ID, status, start time, and end time of a job.- (dict) – - An object containing the - jobId,- status,- startTime, and- endTimeof a job.- jobId (string) – - The ID of the job. 
- status (string) – - The current status of the job. 
- startTime (datetime) – - The time at which the job was started. 
- endTime (datetime) – - The time at which the job has finished. 
 
 
- nextToken (string) – - The pagination token from the previous API call. 
 
 
 - Exceptions- EntityResolution.Client.exceptions.ThrottlingException
- EntityResolution.Client.exceptions.InternalServerException
- EntityResolution.Client.exceptions.ResourceNotFoundException
- EntityResolution.Client.exceptions.AccessDeniedException
- EntityResolution.Client.exceptions.ValidationException