interface OutputAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EntityResolution.CfnMatchingWorkflow.OutputAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnMatchingWorkflow_OutputAttributeProperty |
Java | software.amazon.awscdk.services.entityresolution.CfnMatchingWorkflow.OutputAttributeProperty |
Python | aws_cdk.aws_entityresolution.CfnMatchingWorkflow.OutputAttributeProperty |
TypeScript | aws-cdk-lib » aws_entityresolution » CfnMatchingWorkflow » OutputAttributeProperty |
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 outputAttributeProperty: entityresolution.CfnMatchingWorkflow.OutputAttributeProperty = {
name: 'name',
// the properties below are optional
hashed: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | A name of a column to be written to the output. |
| hashed? | boolean | IResolvable | Enables the ability to hash the column values in the output. |
name
Type:
string
A name of a column to be written to the output.
This must be an InputField name in the schema mapping.
hashed?
Type:
boolean | IResolvable
(optional)
Enables the ability to hash the column values in the output.

.NET
Go
Java
Python
TypeScript