aws-cdk-lib.aws_glue.CfnMLTransform.TransformParametersProperty

interface TransformParametersProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnMLTransform.TransformParametersProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnMLTransform_TransformParametersProperty
Javasoftware.amazon.awscdk.services.glue.CfnMLTransform.TransformParametersProperty
Pythonaws_cdk.aws_glue.CfnMLTransform.TransformParametersProperty
TypeScript aws-cdk-lib » 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 { aws_glue as glue } from 'aws-cdk-lib';
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

NameTypeDescription
transformTypestringThe type of machine learning transform. FIND_MATCHES is the only option.
findMatchesParameters?IResolvable | FindMatchesParametersPropertyThe 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 | FindMatchesParametersProperty (optional)

The parameters for the find matches algorithm.