interface IdMappingWorkflowInputSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowInputSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnIdMappingWorkflowPropsMixin_IdMappingWorkflowInputSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowInputSourceProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowInputSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnIdMappingWorkflowPropsMixin » 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 { mixins as entityresolution_mixins } from '@aws-cdk/mixins-preview/aws-entityresolution';
const idMappingWorkflowInputSourceProperty: entityresolution_mixins.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowInputSourceProperty = {
inputSourceArn: 'inputSourceArn',
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
(optional)
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