Class: Aws::SageMaker::Types::FeatureDefinition

Inherits:
Struct
  • Object
show all
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 FeatureTypes are Integral, Fractional and String.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#feature_nameString

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.

Returns:

  • (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

#feature_typeString

The value type of a feature. Valid values are Integral, Fractional, or String.

Returns:

  • (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