Learn R Programming

paws.analytics (version 0.7.0)

entityresolution_create_matching_workflow: Creates a MatchingWorkflow object which stores the configuration of the data processing job to be run

Description

Creates a MatchingWorkflow object which stores the configuration of the data processing job to be run. It is important to note that there should not be a pre-existing MatchingWorkflow with the same name. To modify an existing workflow, utilize the update_matching_workflow API.

See https://www.paws-r-sdk.com/docs/entityresolution_create_matching_workflow/ for full documentation.

Usage

entityresolution_create_matching_workflow(
  description = NULL,
  incrementalRunConfig = NULL,
  inputSourceConfig,
  outputSourceConfig,
  resolutionTechniques,
  roleArn,
  tags = NULL,
  workflowName
)

Arguments

description

A description of the workflow.

incrementalRunConfig

An object which defines an incremental run type and has only incrementalRunType as a field.

inputSourceConfig

[required] A list of InputSource objects, which have the fields InputSourceARN and SchemaName.

outputSourceConfig

[required] A list of OutputSource objects, each of which contains fields OutputS3Path, ApplyNormalization, and Output.

resolutionTechniques

[required] An object which defines the resolutionType and the ruleBasedProperties.

roleArn

[required] The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.

tags

The tags used to organize, track, or control access for this resource.

workflowName

[required] The name of the workflow. There can't be multiple MatchingWorkflows with the same name.