Get Id Namespace
entityresolution_get_id_namespace | R Documentation |
Returns the IdNamespace with a given name, if it exists¶
Description¶
Returns the IdNamespace
with a given name, if it exists.
Usage¶
Arguments¶
idNamespaceName
[required] The name of the ID namespace.
Value¶
A list with the following syntax:
list(
createdAt = as.POSIXct(
"2015-01-01"
),
description = "string",
idMappingWorkflowProperties = list(
list(
idMappingType = "PROVIDER"|"RULE_BASED",
providerProperties = list(
providerConfiguration = list(),
providerServiceArn = "string"
),
ruleBasedProperties = list(
attributeMatchingModel = "ONE_TO_ONE"|"MANY_TO_MANY",
recordMatchingModels = list(
"ONE_SOURCE_TO_ONE_TARGET"|"MANY_SOURCE_TO_ONE_TARGET"
),
ruleDefinitionTypes = list(
"SOURCE"|"TARGET"
),
rules = list(
list(
matchingKeys = list(
"string"
),
ruleName = "string"
)
)
)
)
),
idNamespaceArn = "string",
idNamespaceName = "string",
inputSourceConfig = list(
list(
inputSourceARN = "string",
schemaName = "string"
)
),
roleArn = "string",
tags = list(
"string"
),
type = "SOURCE"|"TARGET",
updatedAt = as.POSIXct(
"2015-01-01"
)
)