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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMLTransform.TransformParametersProperty
static final class
An implementation forCfnMLTransform.TransformParametersProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTransformType
The type of machine learning transform.FIND_MATCHES
is the only option.For information about the types of machine learning transforms, see Working with machine learning transforms .
- See Also:
-
getFindMatchesParameters
The parameters for the find matches algorithm.- See Also:
-
builder
-