Class: Aws::SageMaker::Types::FeatureDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::FeatureDefinition
- Includes:
- Aws::Structure
- Defined in:
- 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.
16664 16665 16666 16667 16668 16669 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 16664 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.
16664 16665 16666 16667 16668 16669 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 16664 class FeatureDefinition < Struct.new( :feature_name, :feature_type) SENSITIVE = [] include Aws::Structure end |