Class: Aws::SageMakerFeatureStoreRuntime::Types::FeatureValue

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemakerfeaturestoreruntime/lib/aws-sdk-sagemakerfeaturestoreruntime/types.rb

Overview

The value associated with a feature.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#feature_nameString

The name of a feature that a feature value corresponds to.

Returns:

  • (String)


226
227
228
229
230
231
232
# File 'gems/aws-sdk-sagemakerfeaturestoreruntime/lib/aws-sdk-sagemakerfeaturestoreruntime/types.rb', line 226

class FeatureValue < Struct.new(
  :feature_name,
  :value_as_string,
  :value_as_string_list)
  SENSITIVE = []
  include Aws::Structure
end

#value_as_stringString

The value in string format associated with a feature. Used when your CollectionType is None. Note that features types can be String, Integral, or Fractional. This value represents all three types as a string.

Returns:

  • (String)


226
227
228
229
230
231
232
# File 'gems/aws-sdk-sagemakerfeaturestoreruntime/lib/aws-sdk-sagemakerfeaturestoreruntime/types.rb', line 226

class FeatureValue < Struct.new(
  :feature_name,
  :value_as_string,
  :value_as_string_list)
  SENSITIVE = []
  include Aws::Structure
end

#value_as_string_listArray<String>

The list of values in string format associated with a feature. Used when your CollectionType is a List, Set, or Vector. Note that features types can be String, Integral, or Fractional. These values represents all three types as a string.

Returns:

  • (Array<String>)


226
227
228
229
230
231
232
# File 'gems/aws-sdk-sagemakerfeaturestoreruntime/lib/aws-sdk-sagemakerfeaturestoreruntime/types.rb', line 226

class FeatureValue < Struct.new(
  :feature_name,
  :value_as_string,
  :value_as_string_list)
  SENSITIVE = []
  include Aws::Structure
end