Interface CfnMLTransform.FindMatchesParametersProperty

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

@Stability(Stable) public static interface CfnMLTransform.FindMatchesParametersProperty extends software.amazon.jsii.JsiiSerializable
The parameters to configure the find matches transform.

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.glue.*;
 FindMatchesParametersProperty findMatchesParametersProperty = FindMatchesParametersProperty.builder()
         .primaryKeyColumnName("primaryKeyColumnName")
         // the properties below are optional
         .accuracyCostTradeoff(123)
         .enforceProvidedLabels(false)
         .precisionRecallTradeoff(123)
         .build();
 

See Also: