EntityResolution / Client / list_matching_workflows
list_matching_workflows¶
- EntityResolution.Client.list_matching_workflows(**kwargs)¶
Returns a list of all the
MatchingWorkflows
that have been created for an Amazon Web Services account.See also: AWS API Documentation
Request Syntax
response = client.list_matching_workflows( nextToken='string', maxResults=123 )
- Parameters:
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
{ 'workflowSummaries': [ { 'workflowName': 'string', 'workflowArn': 'string', 'createdAt': datetime(2015, 1, 1), 'updatedAt': datetime(2015, 1, 1), 'resolutionType': 'RULE_MATCHING'|'ML_MATCHING'|'PROVIDER' }, ], 'nextToken': 'string' }
Response Structure
(dict) –
workflowSummaries (list) –
A list of
MatchingWorkflowSummary
objects, each of which contain the fieldsWorkflowName
,WorkflowArn
,CreatedAt
, andUpdatedAt
.(dict) –
A list of
MatchingWorkflowSummary
objects, each of which contain the fieldsWorkflowName
,WorkflowArn
,CreatedAt
,UpdatedAt
.workflowName (string) –
The name of the workflow.
workflowArn (string) –
The ARN (Amazon Resource Name) that Entity Resolution generated for the
MatchingWorkflow
.createdAt (datetime) –
The timestamp of when the workflow was created.
updatedAt (datetime) –
The timestamp of when the workflow was last updated.
resolutionType (string) –
The method that has been specified for data matching, either using matching provided by Entity Resolution or through a provider service.
nextToken (string) –
The pagination token from the previous API call.
Exceptions