interface CfnSchemaMappingProps
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_entityresolution.CfnSchemaMappingProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnSchemaMappingProps |
![]() | software.amazon.awscdk.services.entityresolution.CfnSchemaMappingProps |
![]() | aws_cdk.aws_entityresolution.CfnSchemaMappingProps |
![]() | aws-cdk-lib » aws_entityresolution » CfnSchemaMappingProps |
Properties for defining a CfnSchemaMapping
.
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 cfnSchemaMappingProps: entityresolution.CfnSchemaMappingProps = {
mappedInputFields: [{
fieldName: 'fieldName',
type: 'type',
// the properties below are optional
groupName: 'groupName',
hashed: false,
matchKey: 'matchKey',
subType: 'subType',
}],
schemaName: 'schemaName',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
mapped | IResolvable | IResolvable | Schema [] | A list of MappedInputFields . |
schema | string | The name of the schema. |
description? | string | A description of the schema. |
tags? | Cfn [] | The tags used to organize, track, or control access for this resource. |
mappedInputFields
Type:
IResolvable
|
IResolvable
|
Schema
[]
A list of MappedInputFields
.
Each MappedInputField
corresponds to a column the source data table, and contains column name plus additional information that AWS Entity Resolution uses for matching.
schemaName
Type:
string
The name of the schema.
There can't be multiple SchemaMappings
with the same name.
description?
Type:
string
(optional)
A description of the schema.
tags?
Type:
Cfn
[]
(optional)
The tags used to organize, track, or control access for this resource.