interface OutputSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnMatchingWorkflowPropsMixin.OutputSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnMatchingWorkflowPropsMixin_OutputSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnMatchingWorkflowPropsMixin.OutputSourceProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnMatchingWorkflowPropsMixin.OutputSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnMatchingWorkflowPropsMixin » OutputSourceProperty |
A list of OutputAttribute objects, each of which have the fields Name and Hashed .
Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.
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 outputSourceProperty: entityresolution_mixins.CfnMatchingWorkflowPropsMixin.OutputSourceProperty = {
applyNormalization: false,
customerProfilesIntegrationConfig: {
domainArn: 'domainArn',
objectTypeArn: 'objectTypeArn',
},
kmsArn: 'kmsArn',
output: [{
hashed: false,
name: 'name',
}],
outputS3Path: 'outputS3Path',
};
Properties
| Name | Type | Description |
|---|---|---|
| apply | boolean | IResolvable | Normalizes the attributes defined in the schema in the input data. |
| customer | IResolvable | Customer | |
| kms | string | Customer KMS ARN for encryption at rest. |
| output? | IResolvable | (IResolvable | Output)[] | A list of OutputAttribute objects, each of which have the fields Name and Hashed . |
| output | string | The S3 path to which AWS Entity Resolution will write the output table. |
applyNormalization?
Type:
boolean | IResolvable
(optional)
Normalizes the attributes defined in the schema in the input data.
For example, if an attribute has an AttributeType of PHONE_NUMBER , and the data in the input table is in a format of 1234567890, AWS Entity Resolution will normalize this field in the output to (123)-456-7890.
customerProfilesIntegrationConfig?
Type:
IResolvable | Customer
(optional)
kmsArn?
Type:
string
(optional)
Customer KMS ARN for encryption at rest.
If not provided, system will use an AWS Entity Resolution managed KMS key.
output?
Type:
IResolvable | (IResolvable | Output)[]
(optional)
A list of OutputAttribute objects, each of which have the fields Name and Hashed .
Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.
outputS3Path?
Type:
string
(optional)
The S3 path to which AWS Entity Resolution will write the output table.

.NET
Go
Java
Python
TypeScript