Interface CfnMatchingWorkflow.OutputAttributeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMatchingWorkflow.OutputAttributeProperty.Jsii$Proxy
Enclosing class:
CfnMatchingWorkflow

@Stability(Stable) public static interface CfnMatchingWorkflow.OutputAttributeProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.entityresolution.*;
 OutputAttributeProperty outputAttributeProperty = OutputAttributeProperty.builder()
         .name("name")
         // the properties below are optional
         .hashed(false)
         .build();
 

See Also: