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¶
entityresolution_get_id_namespace(idNamespaceName)
Arguments¶
idNamespaceName |
[required] The name of the ID namespace. |
Value¶
A list with the following syntax:
list(
idNamespaceName = "string",
idNamespaceArn = "string",
description = "string",
inputSourceConfig = list(
list(
inputSourceARN = "string",
schemaName = "string"
)
),
idMappingWorkflowProperties = list(
list(
idMappingType = "PROVIDER"|"RULE_BASED",
ruleBasedProperties = list(
rules = list(
list(
ruleName = "string",
matchingKeys = list(
"string"
)
)
),
ruleDefinitionTypes = list(
"SOURCE"|"TARGET"
),
attributeMatchingModel = "ONE_TO_ONE"|"MANY_TO_MANY",
recordMatchingModels = list(
"ONE_SOURCE_TO_ONE_TARGET"|"MANY_SOURCE_TO_ONE_TARGET"
)
),
providerProperties = list(
providerServiceArn = "string",
providerConfiguration = list()
)
)
),
type = "SOURCE"|"TARGET",
roleArn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
tags = list(
"string"
)
)
Request syntax¶
svc$get_id_namespace(
idNamespaceName = "string"
)