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(
    maxResults=123,
    nextToken='string'
)
Parameters:
  • maxResults (integer) – The maximum number of objects returned per page.

  • nextToken (string) – The pagination token from the previous API call.

Return type:

dict

Returns:

Response Syntax

{
    'nextToken': 'string',
    'workflowSummaries': [
        {
            'createdAt': datetime(2015, 1, 1),
            'resolutionType': 'RULE_MATCHING'|'ML_MATCHING'|'PROVIDER',
            'updatedAt': datetime(2015, 1, 1),
            'workflowArn': 'string',
            'workflowName': 'string'
        },
    ]
}

Response Structure

  • (dict) –

    • nextToken (string) –

      The pagination token from the previous API call.

    • workflowSummaries (list) –

      A list of MatchingWorkflowSummary objects, each of which contain the fields WorkflowName, WorkflowArn, CreatedAt, and UpdatedAt.

      • (dict) –

        A list of MatchingWorkflowSummary objects, each of which contain the fields WorkflowName, WorkflowArn, CreatedAt, UpdatedAt.

        • createdAt (datetime) –

          The timestamp of when the workflow was created.

        • resolutionType (string) –

          The method that has been specified for data matching, either using matching provided by Entity Resolution or through a provider service.

        • updatedAt (datetime) –

          The timestamp of when the workflow was last updated.

        • workflowArn (string) –

          The ARN (Amazon Resource Name) that Entity Resolution generated for the MatchingWorkflow.

        • workflowName (string) –

          The name of the workflow.

Exceptions