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
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
.
17112 17113 17114 17115 17116 17117 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 17112 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.
17112 17113 17114 17115 17116 17117 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 17112 class FeatureDefinition < Struct.new( :feature_name, :feature_type) SENSITIVE = [] include Aws::Structure end |