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

Inherits:
Struct
  • Object
show all
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

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)


17711
17712
17713
17714
17715
17716
# File 'lib/aws-sdk-sagemaker/types.rb', line 17711

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)


17711
17712
17713
17714
17715
17716
# File 'lib/aws-sdk-sagemaker/types.rb', line 17711

class FeatureDefinition < Struct.new(
  :feature_name,
  :feature_type)
  SENSITIVE = []
  include Aws::Structure
end