interface CfnSchemaMappingMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnSchemaMappingMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnSchemaMappingMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnSchemaMappingMixinProps |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnSchemaMappingMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnSchemaMappingMixinProps |
Properties for CfnSchemaMappingPropsMixin.
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 cfnSchemaMappingMixinProps: entityresolution_mixins.CfnSchemaMappingMixinProps = {
description: 'description',
mappedInputFields: [{
fieldName: 'fieldName',
groupName: 'groupName',
hashed: false,
matchKey: 'matchKey',
subType: 'subType',
type: 'type',
}],
schemaName: 'schemaName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the schema. |
| mapped | IResolvable | (IResolvable | Schema)[] | A list of MappedInputFields . |
| schema | string | The name of the schema. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
description?
Type:
string
(optional)
A description of the schema.
mappedInputFields?
Type:
IResolvable | (IResolvable | Schema)[]
(optional)
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
(optional)
The name of the schema.
There can't be multiple SchemaMappings with the same name.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.

.NET
Go
Java
Python
TypeScript