interface TransformParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnMLTransform.TransformParametersProperty |
Java | software.amazon.awscdk.services.glue.CfnMLTransform.TransformParametersProperty |
Python | aws_cdk.aws_glue.CfnMLTransform.TransformParametersProperty |
TypeScript | @aws-cdk/aws-glue » CfnMLTransform » TransformParametersProperty |
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 * as glue from '@aws-cdk/aws-glue';
const transformParametersProperty: glue.CfnMLTransform.TransformParametersProperty = {
transformType: 'transformType',
// the properties below are optional
findMatchesParameters: {
primaryKeyColumnName: 'primaryKeyColumnName',
// the properties below are optional
accuracyCostTradeoff: 123,
enforceProvidedLabels: false,
precisionRecallTradeoff: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| transform | string | The type of machine learning transform. FIND_MATCHES is the only option. |
| find | IResolvable | Find | The parameters for the find matches algorithm. |
transformType
Type:
string
The type of machine learning transform. FIND_MATCHES is the only option.
For information about the types of machine learning transforms, see Creating Machine Learning Transforms .
findMatchesParameters?
Type:
IResolvable | Find
(optional)
The parameters for the find matches algorithm.

.NET
Java
Python
TypeScript