Class CfnMatchingWorkflow.OutputAttributeProperty
A list of OutputAttribute objects, each of which have the fields Name and Hashed .
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EntityResolution
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMatchingWorkflow.OutputAttributeProperty : CfnMatchingWorkflow.IOutputAttributeProperty
Syntax (vb)
Public Class CfnMatchingWorkflow.OutputAttributeProperty Implements CfnMatchingWorkflow.IOutputAttributeProperty
Remarks
Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EntityResolution;
var outputAttributeProperty = new OutputAttributeProperty {
Name = "name",
// the properties below are optional
Hashed = false
};
Synopsis
Constructors
| OutputAttributeProperty() | A list of |
Properties
| Hashed | Enables the ability to hash the column values in the output. |
| Name | A name of a column to be written to the output. |
Constructors
OutputAttributeProperty()
A list of OutputAttribute objects, each of which have the fields Name and Hashed .
public OutputAttributeProperty()
Remarks
Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EntityResolution;
var outputAttributeProperty = new OutputAttributeProperty {
Name = "name",
// the properties below are optional
Hashed = false
};
Properties
Hashed
Enables the ability to hash the column values in the output.
public object? Hashed { get; set; }
Property Value
Remarks
Name
A name of a column to be written to the output.
public string Name { get; set; }
Property Value
Remarks
This must be an InputField name in the schema mapping.