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_name ⇒ String

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

Returns:

  • (String)


346
347
348
349
350
351
352
# File 'gems/aws-sdk-sagemakerfeaturestoreruntime/lib/aws-sdk-sagemakerfeaturestoreruntime/types.rb', line 346

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

#value_as_string ⇒ String

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)


346
347
348
349
350
351
352
# File 'gems/aws-sdk-sagemakerfeaturestoreruntime/lib/aws-sdk-sagemakerfeaturestoreruntime/types.rb', line 346

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

#value_as_string_list ⇒ Array<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>)


346
347
348
349
350
351
352
# File 'gems/aws-sdk-sagemakerfeaturestoreruntime/lib/aws-sdk-sagemakerfeaturestoreruntime/types.rb', line 346

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