Class: Aws::SageMakerFeatureStoreRuntime::Types::FeatureValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMakerFeatureStoreRuntime::Types::FeatureValue
- 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
-
#feature_name ⇒ String
The name of a feature that a feature value corresponds to.
-
#value_as_string ⇒ String
The value in string format associated with a feature.
-
#value_as_string_list ⇒ Array<String>
The list of values in string format associated with a feature.
Instance Attribute Details
#feature_name ⇒ String
The name of a feature that a feature value corresponds to.
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 ⇒ 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.
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_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.
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 |