Class: Aws::SageMaker::Types::ComputeQuotaTarget
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ComputeQuotaTarget
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
The target entity to allocate compute resources to.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #fair_share_weight  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Assigned entity fair-share weight.
 - 
  
    
      #team_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of the team to allocate compute resources to.
 
Instance Attribute Details
#fair_share_weight ⇒ Integer
Assigned entity fair-share weight. Idle compute will be shared across entities based on these assigned weights. This weight is only used when ‘FairShare` is enabled.
A weight of 0 is the lowest priority and 100 is the highest. Weight 0 is the default.
      5201 5202 5203 5204 5205 5206  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 5201 class ComputeQuotaTarget < Struct.new( :team_name, :fair_share_weight) SENSITIVE = [] include Aws::Structure end  | 
  
#team_name ⇒ String
Name of the team to allocate compute resources to.
      5201 5202 5203 5204 5205 5206  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 5201 class ComputeQuotaTarget < Struct.new( :team_name, :fair_share_weight) SENSITIVE = [] include Aws::Structure end  |