Class: Aws::SageMaker::Types::FeatureDefinition
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::FeatureDefinition
 
 
- 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
- 
  
    
      #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`, or `Fractional`).
 - 
  
    
      #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.
      21610 21611 21612 21613 21614 21615 21616 21617  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 21610 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.
 
      21610 21611 21612 21613 21614 21615 21616 21617  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 21610 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.
 
      21610 21611 21612 21613 21614 21615 21616 21617  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 21610 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.
      21610 21611 21612 21613 21614 21615 21616 21617  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 21610 class FeatureDefinition < Struct.new( :feature_name, :feature_type, :collection_type, :collection_config) SENSITIVE = [] include Aws::Structure end  |