EntityResolution / Client / get_id_mapping_workflow
get_id_mapping_workflow¶
- EntityResolution.Client.get_id_mapping_workflow(**kwargs)¶
- Returns the - IdMappingWorkflowwith 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- { 'workflowName': 'string', 'workflowArn': 'string', 'description': 'string', 'inputSourceConfig': [ { 'inputSourceARN': 'string', 'schemaName': 'string', 'type': 'SOURCE'|'TARGET' }, ], 'outputSourceConfig': [ { 'outputS3Path': 'string', 'KMSArn': 'string' }, ], 'idMappingTechniques': { 'idMappingType': 'PROVIDER'|'RULE_BASED', 'ruleBasedProperties': { 'rules': [ { 'ruleName': 'string', 'matchingKeys': [ 'string', ] }, ], 'ruleDefinitionType': 'SOURCE'|'TARGET', 'attributeMatchingModel': 'ONE_TO_ONE'|'MANY_TO_MANY', 'recordMatchingModel': 'ONE_SOURCE_TO_ONE_TARGET'|'MANY_SOURCE_TO_ONE_TARGET' }, 'providerProperties': { 'providerServiceArn': 'string', 'providerConfiguration': {...}|[...]|123|123.4|'string'|True|None, 'intermediateSourceConfiguration': { 'intermediateS3Path': 'string' } } }, 'createdAt': datetime(2015, 1, 1), 'updatedAt': datetime(2015, 1, 1), 'incrementalRunConfig': { 'incrementalRunType': 'ON_DEMAND' }, 'roleArn': 'string', 'tags': { 'string': 'string' } } - Response Structure- (dict) – - workflowName (string) – - The name of the workflow. 
- workflowArn (string) – - The ARN (Amazon Resource Name) that Entity Resolution generated for the - IdMappingWorkflow.
- description (string) – - A description of the workflow. 
- inputSourceConfig (list) – - A list of - InputSourceobjects, which have the fields- InputSourceARNand- SchemaName.- (dict) – - An object containing - inputSourceARN,- schemaName, and- type.- 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: - SOURCEand- TARGET.- The - SOURCEcontains configurations for- sourceIddata that will be processed in an ID mapping workflow.- The - TARGETcontains a configuration of- targetIdwhich all- sourceIdswill resolve to.
 
 
- outputSourceConfig (list) – - A list of - OutputSourceobjects, each of which contains fields- outputS3Pathand- KMSArn.- (dict) – - The output source for the ID mapping workflow. - outputS3Path (string) – - The S3 path to which Entity Resolution will write the output table. 
- KMSArn (string) – - Customer KMS ARN for encryption at rest. If not provided, system will use an Entity Resolution managed KMS key. 
 
 
- idMappingTechniques (dict) – - An object which defines the ID mapping technique and any additional configurations. - idMappingType (string) – - The type of ID mapping. 
- ruleBasedProperties (dict) – - An object which defines any additional configurations required by rule-based matching. - rules (list) – - The rules that can be used for ID mapping. - (dict) – - An object containing the - ruleNameand- matchingKeys.- ruleName (string) – - A name for the matching rule. 
- matchingKeys (list) – - A list of - MatchingKeys. The- MatchingKeysmust have been defined in the- SchemaMapping. Two records are considered to match according to this rule if all of the- MatchingKeysmatch.- (string) – 
 
 
 
- 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. 
- attributeMatchingModel (string) – - The comparison type. You can either choose - ONE_TO_ONEor- MANY_TO_MANYas the- attributeMatchingModel.- If you choose - ONE_TO_ONE, the system can only match attributes if the sub-types are an exact match. For example, for the- Emailattribute type, the system will only consider it a match if the value of the- Emailfield of Profile A matches the value of the- Emailfield of Profile B.- 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 the- Emailfield of Profile A matches the value of the- BusinessEmailfield of Profile B, the two profiles are matched on the- Emailattribute type.
- 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.
 
- providerProperties (dict) – - An object which defines any additional configurations required by the provider service. - providerServiceArn (string) – - The ARN of the provider service. 
- providerConfiguration (document) – - The required configuration fields to use with 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
 
 
 
- createdAt (datetime) – - The timestamp of when the workflow was created. 
- updatedAt (datetime) – - The timestamp of when the workflow was last updated. 
- incrementalRunConfig (dict) – - The incremental run configuration for the ID mapping workflow. - incrementalRunType (string) – - The incremental run type for an ID mapping workflow. - It takes only one value: - ON_DEMAND. This setting runs the ID mapping workflow when it’s manually triggered through the- StartIdMappingJobAPI.
 
- 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) – 
 
 
 
 
 - Exceptions