Class: Aws::SageMaker::Types::FeatureParameter
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::FeatureParameter
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
A key-value pair that you specify to describe the feature.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A key that must contain a value to describe the feature.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value that belongs to a key.
 
Instance Attribute Details
#key ⇒ String
A key that must contain a value to describe the feature.
      21750 21751 21752 21753 21754 21755  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 21750 class FeatureParameter < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
The value that belongs to a key.
      21750 21751 21752 21753 21754 21755  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 21750 class FeatureParameter < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end  |