Get Id Mapping Workflow
entityresolution_get_id_mapping_workflow | R Documentation |
Returns the IdMappingWorkflow with a given name, if it exists¶
Description¶
Returns the IdMappingWorkflow
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",
idMappingTechniques = list(
idMappingType = "PROVIDER"|"RULE_BASED",
providerProperties = list(
intermediateSourceConfiguration = list(
intermediateS3Path = "string"
),
providerConfiguration = list(),
providerServiceArn = "string"
),
ruleBasedProperties = list(
attributeMatchingModel = "ONE_TO_ONE"|"MANY_TO_MANY",
recordMatchingModel = "ONE_SOURCE_TO_ONE_TARGET"|"MANY_SOURCE_TO_ONE_TARGET",
ruleDefinitionType = "SOURCE"|"TARGET",
rules = list(
list(
matchingKeys = list(
"string"
),
ruleName = "string"
)
)
)
),
inputSourceConfig = list(
list(
inputSourceARN = "string",
schemaName = "string",
type = "SOURCE"|"TARGET"
)
),
outputSourceConfig = list(
list(
KMSArn = "string",
outputS3Path = "string"
)
),
roleArn = "string",
tags = list(
"string"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
workflowArn = "string",
workflowName = "string"
)