AWS::EntityResolution::SchemaMappingCreates a schema mapping, which defines the schema of the input customer records table. The `SchemaMapping` also provides AWS Entity Resolution with some metadata about the table, such as the attribute types of the columns and which columns to match on.
import { CfnSchemaMapping } from 'aws-cdk-lib/aws-entityresolution';Or use the module namespace:
import * as entityresolution from 'aws-cdk-lib/aws-entityresolution';
// entityresolution.CfnSchemaMappingConfiguration passed to the constructor as CfnSchemaMappingProps.
mappedInputFieldsRequiredIResolvable | IResolvable | SchemaInputAttributeProperty[]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.
schemaNameRequiredstringThe name of the schema. There can't be multiple `SchemaMappings` with the same name.
descriptionOptionalstringA description of the schema.
tagsOptionalCfnTag[]The tags used to organize, track, or control access for this resource.
This L1 construct maps directly to the following CloudFormation resource type.
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-entityresolutionAWS::EntityResolution::SchemaMapping