interface TransformParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnMLTransformPropsMixin.TransformParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnMLTransformPropsMixin_TransformParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnMLTransformPropsMixin.TransformParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnMLTransformPropsMixin.TransformParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnMLTransformPropsMixin » 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 { aws_glue as glue } from '@aws-cdk/cfn-property-mixins';
const transformParametersProperty: glue.CfnMLTransformPropsMixin.TransformParametersProperty = {
findMatchesParameters: {
accuracyCostTradeoff: 123,
enforceProvidedLabels: false,
precisionRecallTradeoff: 123,
primaryKeyColumnName: 'primaryKeyColumnName',
},
transformType: 'transformType',
};
Properties
| Name | Type | Description |
|---|---|---|
| find | IResolvable | Find | The parameters for the find matches algorithm. |
| transform | string | The type of machine learning transform. FIND_MATCHES is the only option. |
findMatchesParameters?
Type:
IResolvable | Find
(optional)
The parameters for the find matches algorithm.
transformType?
Type:
string
(optional)
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 .

.NET
Go
Java
Python
TypeScript