Class: Aws::Glue::Types::TransformParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::TransformParameters
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass TransformParameters data as a hash:
{
transform_type: "FIND_MATCHES", # required, accepts FIND_MATCHES
find_matches_parameters: {
primary_key_column_name: "ColumnNameString",
precision_recall_tradeoff: 1.0,
accuracy_cost_tradeoff: 1.0,
enforce_provided_labels: false,
},
}
The algorithm-specific parameters that are associated with the machine learning transform.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#find_matches_parameters ⇒ Types::FindMatchesParameters
The parameters for the find matches algorithm.
-
#transform_type ⇒ String
The type of machine learning transform.
Instance Attribute Details
#find_matches_parameters ⇒ Types::FindMatchesParameters
The parameters for the find matches algorithm.
23613 23614 23615 23616 23617 23618 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23613 class TransformParameters < Struct.new( :transform_type, :find_matches_parameters) SENSITIVE = [] include Aws::Structure end |
#transform_type ⇒ String
The type of machine learning transform.
For information about the types of machine learning transforms, see Creating Machine Learning Transforms.
23613 23614 23615 23616 23617 23618 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23613 class TransformParameters < Struct.new( :transform_type, :find_matches_parameters) SENSITIVE = [] include Aws::Structure end |