Class: Aws::SageMaker::Types::PriorityClass
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::PriorityClass
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Priority class configuration. When included in ‘PriorityClasses`, these class configurations define how tasks are queued.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of the priority class.
 - 
  
    
      #weight  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Weight of the priority class.
 
Instance Attribute Details
#name ⇒ String
Name of the priority class.
      38397 38398 38399 38400 38401 38402  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 38397 class PriorityClass < Struct.new( :name, :weight) SENSITIVE = [] include Aws::Structure end  | 
  
#weight ⇒ Integer
Weight of the priority class. The value is within a range from 0 to 100, where 0 is the default.
A weight of 0 is the lowest priority and 100 is the highest. Weight 0 is the default.
      38397 38398 38399 38400 38401 38402  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 38397 class PriorityClass < Struct.new( :name, :weight) SENSITIVE = [] include Aws::Structure end  |