interface IdMappingWorkflowInputSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EntityResolution.CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnIdMappingWorkflow_IdMappingWorkflowInputSourceProperty |
Java | software.amazon.awscdk.services.entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty |
Python | aws_cdk.aws_entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty |
TypeScript | aws-cdk-lib » aws_entityresolution » CfnIdMappingWorkflow » IdMappingWorkflowInputSourceProperty |
An object containing inputSourceARN , schemaName , and type .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_entityresolution as entityresolution } from 'aws-cdk-lib';
const idMappingWorkflowInputSourceProperty: entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty = {
inputSourceArn: 'inputSourceArn',
// the properties below are optional
schemaArn: 'schemaArn',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| input | string | An AWS Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table. |
| schema | string | The ARN (Amazon Resource Name) that AWS Entity Resolution generated for the SchemaMapping . |
| type? | string | The type of ID namespace. There are two types: SOURCE and TARGET . |
inputSourceArn
Type:
string
An AWS Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table.
schemaArn?
Type:
string
(optional)
The ARN (Amazon Resource Name) that AWS Entity Resolution generated for the SchemaMapping .
type?
Type:
string
(optional)
The type of ID namespace. There are two types: SOURCE and TARGET .
The SOURCE contains configurations for sourceId data that will be processed in an ID mapping workflow.
The TARGET contains a configuration of targetId which all sourceIds will resolve to.

.NET
Go
Java
Python
TypeScript