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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMatchingWorkflow.OutputAttributePropertystatic final classAn implementation forCfnMatchingWorkflow.OutputAttributeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A name of a column to be written to the output.This must be an
InputFieldname in the schema mapping.- See Also:
-
getHashed
Enables the ability to hash the column values in the output.Returns union: either
BooleanorIResolvable- See Also:
-
builder
-