interface OutputSourceProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_entityresolution.CfnMatchingWorkflow.OutputSourceProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnMatchingWorkflow_OutputSourceProperty |
![]() | software.amazon.awscdk.services.entityresolution.CfnMatchingWorkflow.OutputSourceProperty |
![]() | aws_cdk.aws_entityresolution.CfnMatchingWorkflow.OutputSourceProperty |
![]() | aws-cdk-lib » aws_entityresolution » CfnMatchingWorkflow » 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 { aws_entityresolution as entityresolution } from 'aws-cdk-lib';
const outputSourceProperty: entityresolution.CfnMatchingWorkflow.OutputSourceProperty = {
output: [{
name: 'name',
// the properties below are optional
hashed: false,
}],
outputS3Path: 'outputS3Path',
// the properties below are optional
applyNormalization: false,
kmsArn: 'kmsArn',
};
Properties
Name | Type | Description |
---|---|---|
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. |
apply | boolean | IResolvable | Normalizes the attributes defined in the schema in the input data. |
kms | string | Customer KMS ARN for encryption at rest. |
output
Type:
IResolvable
|
IResolvable
|
Output
[]
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
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.
kmsArn?
Type:
string
(optional)
Customer KMS ARN for encryption at rest.
If not provided, system will use an AWS Entity Resolution managed KMS key.