Class: Aws::SageMaker::Types::FeatureDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::FeatureDefinition
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass FeatureDefinition data as a hash:
{
feature_name: "FeatureName",
feature_type: "Integral", # accepts Integral, Fractional, String
}
A list of features. You must include FeatureName
and FeatureType
.
Valid feature FeatureType
s are Integral
, Fractional
and
String
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#feature_name ⇒ String
The name of a feature.
-
#feature_type ⇒ String
The value type of a feature.
Instance Attribute Details
#feature_name ⇒ String
The name of a feature. The type must be a string. FeatureName
cannot be any of the following: is_deleted
, write_time
,
api_invocation_time
.
15695 15696 15697 15698 15699 15700 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 15695 class FeatureDefinition < Struct.new( :feature_name, :feature_type) SENSITIVE = [] include Aws::Structure end |
#feature_type ⇒ String
The value type of a feature. Valid values are Integral, Fractional, or String.
15695 15696 15697 15698 15699 15700 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 15695 class FeatureDefinition < Struct.new( :feature_name, :feature_type) SENSITIVE = [] include Aws::Structure end |