Interface CfnMLTransform.TransformParametersProperty

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

@Stability(Stable) public static interface CfnMLTransform.TransformParametersProperty extends software.amazon.jsii.JsiiSerializable
The algorithm-specific parameters that are associated with the machine learning 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.*;
 TransformParametersProperty transformParametersProperty = TransformParametersProperty.builder()
         .transformType("transformType")
         // the properties below are optional
         .findMatchesParameters(FindMatchesParametersProperty.builder()
                 .primaryKeyColumnName("primaryKeyColumnName")
                 // the properties below are optional
                 .accuracyCostTradeoff(123)
                 .enforceProvidedLabels(false)
                 .precisionRecallTradeoff(123)
                 .build())
         .build();
 

See Also: