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

.NET
Go
Java
Python
TypeScript