interface IdMappingWorkflowInputSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EntityResolution.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowInputSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsentityresolution#CfnIdMappingWorkflowPropsMixin_IdMappingWorkflowInputSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.entityresolution.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowInputSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_entityresolution.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowInputSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_entityresolution » 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 { aws_entityresolution as entityresolution } from '@aws-cdk/cfn-property-mixins';
const idMappingWorkflowInputSourceProperty: entityresolution.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