Get Matching Workflow
entityresolution_get_matching_workflow | R Documentation |
Returns the MatchingWorkflow with a given name, if it exists¶
Description¶
Returns the MatchingWorkflow
with a given name, if it exists.
Usage¶
Arguments¶
workflowName
[required] The name of the workflow.
Value¶
A list with the following syntax:
list(
createdAt = as.POSIXct(
"2015-01-01"
),
description = "string",
incrementalRunConfig = list(
incrementalRunType = "IMMEDIATE"
),
inputSourceConfig = list(
list(
applyNormalization = TRUE|FALSE,
inputSourceARN = "string",
schemaName = "string"
)
),
outputSourceConfig = list(
list(
KMSArn = "string",
applyNormalization = TRUE|FALSE,
output = list(
list(
hashed = TRUE|FALSE,
name = "string"
)
),
outputS3Path = "string"
)
),
resolutionTechniques = list(
providerProperties = list(
intermediateSourceConfiguration = list(
intermediateS3Path = "string"
),
providerConfiguration = list(),
providerServiceArn = "string"
),
resolutionType = "RULE_MATCHING"|"ML_MATCHING"|"PROVIDER",
ruleBasedProperties = list(
attributeMatchingModel = "ONE_TO_ONE"|"MANY_TO_MANY",
matchPurpose = "IDENTIFIER_GENERATION"|"INDEXING",
rules = list(
list(
matchingKeys = list(
"string"
),
ruleName = "string"
)
)
)
),
roleArn = "string",
tags = list(
"string"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
workflowArn = "string",
workflowName = "string"
)