Class: Aws::SageMaker::Types::FeatureDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::FeatureDefinition
- 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
-
#collection_config ⇒ Types::CollectionConfig
Configuration for your collection.
-
#collection_type ⇒ String
A grouping of elements where each element within the collection must have the same feature type (
String,Integral, orFractional). -
#feature_name ⇒ String
The name of a feature.
-
#feature_type ⇒ String
The value type of a feature.
Instance Attribute Details
#collection_config ⇒ Types::CollectionConfig
Configuration for your collection.
23562 23563 23564 23565 23566 23567 23568 23569 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 23562 class FeatureDefinition < Struct.new( :feature_name, :feature_type, :collection_type, :collection_config) SENSITIVE = [] include Aws::Structure end |
#collection_type ⇒ String
A grouping of elements where each element within the collection must
have the same feature type (String, Integral, or Fractional).
List: An ordered collection of elements.Set: An unordered collection of unique elements.Vector: A specialized list that represents a fixed-size array of elements. The vector dimension is determined by you. Must have elements with fractional feature types.
23562 23563 23564 23565 23566 23567 23568 23569 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 23562 class FeatureDefinition < Struct.new( :feature_name, :feature_type, :collection_type, :collection_config) SENSITIVE = [] include Aws::Structure end |
#feature_name ⇒ String
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.
The name:
Must start with an alphanumeric character.
Can only include alphanumeric characters, underscores, and hyphens. Spaces are not allowed.
23562 23563 23564 23565 23566 23567 23568 23569 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 23562 class FeatureDefinition < Struct.new( :feature_name, :feature_type, :collection_type, :collection_config) SENSITIVE = [] include Aws::Structure end |
#feature_type ⇒ String
The value type of a feature. Valid values are Integral, Fractional, or String.
23562 23563 23564 23565 23566 23567 23568 23569 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 23562 class FeatureDefinition < Struct.new( :feature_name, :feature_type, :collection_type, :collection_config) SENSITIVE = [] include Aws::Structure end |