EntityResolution / Client / get_id_mapping_workflow
get_id_mapping_workflow#
- EntityResolution.Client.get_id_mapping_workflow(**kwargs)#
Returns the
IdMappingWorkflow
with a given name, if it exists.See also: AWS API Documentation
Request Syntax
response = client.get_id_mapping_workflow( workflowName='string' )
- Parameters:
workflowName (string) –
[REQUIRED]
The name of the workflow.
- Return type:
dict
- Returns:
Response Syntax
{ 'createdAt': datetime(2015, 1, 1), 'description': 'string', 'idMappingTechniques': { 'idMappingType': 'PROVIDER'|'RULE_BASED', 'providerProperties': { 'intermediateSourceConfiguration': { 'intermediateS3Path': 'string' }, 'providerConfiguration': {...}|[...]|123|123.4|'string'|True|None, 'providerServiceArn': 'string' }, 'ruleBasedProperties': { 'attributeMatchingModel': 'ONE_TO_ONE'|'MANY_TO_MANY', 'recordMatchingModel': 'ONE_SOURCE_TO_ONE_TARGET'|'MANY_SOURCE_TO_ONE_TARGET', 'ruleDefinitionType': 'SOURCE'|'TARGET', 'rules': [ { 'matchingKeys': [ 'string', ], 'ruleName': 'string' }, ] } }, 'inputSourceConfig': [ { 'inputSourceARN': 'string', 'schemaName': 'string', 'type': 'SOURCE'|'TARGET' }, ], 'outputSourceConfig': [ { 'KMSArn': 'string', 'outputS3Path': 'string' }, ], 'roleArn': 'string', 'tags': { 'string': 'string' }, 'updatedAt': datetime(2015, 1, 1), 'workflowArn': 'string', 'workflowName': 'string' }
Response Structure
(dict) –
createdAt (datetime) –
The timestamp of when the workflow was created.
description (string) –
A description of the workflow.
idMappingTechniques (dict) –
An object which defines the ID mapping technique and any additional configurations.
idMappingType (string) –
The type of ID mapping.
providerProperties (dict) –
An object which defines any additional configurations required by the provider service.
intermediateSourceConfiguration (dict) –
The Amazon S3 location that temporarily stores your data while it processes. Your information won’t be saved permanently.
intermediateS3Path (string) –
The Amazon S3 location (bucket and prefix). For example:
s3://provider_bucket/DOC-EXAMPLE-BUCKET
providerConfiguration (document) –
The required configuration fields to use with the provider service.
providerServiceArn (string) –
The ARN of the provider service.
ruleBasedProperties (dict) –
An object which defines any additional configurations required by rule-based matching.
attributeMatchingModel (string) –
The comparison type. You can either choose
ONE_TO_ONE
orMANY_TO_MANY
as theattributeMatchingModel
.If you choose
MANY_TO_MANY
, the system can match attributes across the sub-types of an attribute type. For example, if the value of theEmail
field of Profile A matches the value of theBusinessEmail
field of Profile B, the two profiles are matched on theEmail
attribute type.If you choose
ONE_TO_ONE
, the system can only match attributes if the sub-types are an exact match. For example, for theEmail
attribute type, the system will only consider it a match if the value of theEmail
field of Profile A matches the value of theEmail
field of Profile B.recordMatchingModel (string) –
The type of matching record that is allowed to be used in an ID mapping workflow.
If the value is set to
ONE_SOURCE_TO_ONE_TARGET
, only one record in the source can be matched to the same record in the target.If the value is set to
MANY_SOURCE_TO_ONE_TARGET
, multiple records in the source can be matched to one record in the target.ruleDefinitionType (string) –
The set of rules you can use in an ID mapping workflow. The limitations specified for the source or target to define the match rules must be compatible.
rules (list) –
The rules that can be used for ID mapping.
(dict) –
An object containing
RuleName
, andMatchingKeys
.matchingKeys (list) –
A list of
MatchingKeys
. TheMatchingKeys
must have been defined in theSchemaMapping
. Two records are considered to match according to this rule if all of theMatchingKeys
match.(string) –
ruleName (string) –
A name for the matching rule.
inputSourceConfig (list) –
A list of
InputSource
objects, which have the fieldsInputSourceARN
andSchemaName
.(dict) –
An object containing
InputSourceARN
,SchemaName
, andType
.inputSourceARN (string) –
An Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table.
schemaName (string) –
The name of the schema to be retrieved.
type (string) –
The type of ID namespace. There are two types:
SOURCE
andTARGET
.The
SOURCE
contains configurations forsourceId
data that will be processed in an ID mapping workflow.The
TARGET
contains a configuration oftargetId
which allsourceIds
will resolve to.
outputSourceConfig (list) –
A list of
OutputSource
objects, each of which contains fieldsOutputS3Path
andKMSArn
.(dict) –
The output source for the ID mapping workflow.
KMSArn (string) –
Customer KMS ARN for encryption at rest. If not provided, system will use an Entity Resolution managed KMS key.
outputS3Path (string) –
The S3 path to which Entity Resolution will write the output table.
roleArn (string) –
The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access Amazon Web Services resources on your behalf.
tags (dict) –
The tags used to organize, track, or control access for this resource.
(string) –
(string) –
updatedAt (datetime) –
The timestamp of when the workflow was last updated.
workflowArn (string) –
The ARN (Amazon Resource Name) that Entity Resolution generated for the
IdMappingWorkflow
.workflowName (string) –
The name of the workflow.
Exceptions
EntityResolution.Client.exceptions.ThrottlingException
EntityResolution.Client.exceptions.InternalServerException
EntityResolution.Client.exceptions.ResourceNotFoundException
EntityResolution.Client.exceptions.AccessDeniedException
EntityResolution.Client.exceptions.ValidationException