Class: Aws::SageMaker::Types::CategoricalParameter
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::CategoricalParameter
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Environment parameters you want to benchmark your load test against.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Name of the environment variable.
 - 
  
    
      #value  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of values you can pass.
 
Instance Attribute Details
#name ⇒ String
The Name of the environment variable.
      3492 3493 3494 3495 3496 3497  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 3492 class CategoricalParameter < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ Array<String>
The list of values you can pass.
      3492 3493 3494 3495 3496 3497  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 3492 class CategoricalParameter < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end  |